Anonymous

Register for more FREE stuff!

my subscriptions

Abstract Data Structures

Question 1

[Maximum mark: 7]



Consider a 2D array called X which has 8 rows and 6 columns, which is filled with random integers from 0 to 10. The sample of the array looks as follows:

2 3 7 0 1 9
1 5 9 4 3 2
9 0 4 6 2 4
. . . . . .
. . . . . .
7 7 6 9 0 3

a) Using pseudocode, find the sum of all integers in this array.


b) Modify your answer to part (a) and find the average of all those integers.

Answers and Explanations

Question 2

[Maximum mark: 3]



Draw a balanced binary tree that would display the following output when traversed using postorder traversal:


Blue, Red, Yellow, Black, Orange, Green, White

Answers and Explanations

Question 3

[Maximum mark: 3]



State the output when the following tree is traversed using inorder traversal:



Answers and Explanations

Question 4

[Maximum mark: 14]



A hospital uses a queue to manage patient check-ins efficiently.


a) Outline why a queue is the appropriate data structure for managing patient check-ins.


b) Explain why a stack is not appropriate for managing patient check-ins.


The sum of the first \( n \) naturla numbers, denoted as \( S(n) = 1 + 2 + ... + n \), can be calculated using a stack. The following algorithm demonstrates how a stack may be used for this computation:


            
                NUM = 5
                loop while NUM > 0
                    stack.push(NUM)
                    NUM = NUM - 1
                end loop
                SUM = 0
                loop while not stack.isEmpty()
                    NUM = stack.pop()
                    SUM = SUM + NUM
                end loop
                output SUM
            
        

c) Complete the trace table for the given algorithm when NUM = 5.

NUM SUM Output
5

d) Show how stacks may be used in the implementation of a recursive function.

Answers and Explanations

Question 5

[Maximum mark: 2]



State two charactirsics of a queue.


Answers and Explanations

Question 6

[Maximum mark: 3]



Explain the functionality of the isEmpty() method which is used when creating an algorithm using stacks as data structures.


Answers and Explanations

Question 7

[Maximum mark: 12]



Consider a 2D array called EMPLOYEES that stores details about employees in a company. Each row represents an employee, and each column represents a specific field. The fields currently in use are:

  • LASTNAME
  • FIRSTNAME
  • DEPARTMENT
  • JOB_TITLE
  • OFFICE
  • CITY
  • EMPLOYEE_ID

The company database currently holds 750 employee records.


a) Write pseudocode to count how many employees work in the "Finance" department and display the result.


b) Construct an algorithm to generate employee ID badges for all employees with the job title "Manager" who work in the New York office. The badge format should be:


        FIRSTNAME LASTNAME
        JOB_TITLE
        DEPARTMENT
        OFFICE
        CITY
        EMPLOYEE_ID
        


In a singly linked list, each node contains a reference to the next node but not the previous one. The list currently contains the following last names in alphabetical order: Anderson → Blake → Carter → Daniels → Thompson.


c) Explain the process of inserting "Smith" in the correct position, including the traversal steps and how pointer adjustments are made.

Answers and Explanations