Midterm 2 Flashcards

review

1
Q

When it comes to job scheduling, whether to use a binary search tree or a queue depends on the specific requirements and constraints of the scheduling problem being addressed. for example in a operating systems ________ are used to manage the same priority level processes. (tasks are completed in the order they arrive.

A

Queue

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Web browsers use ________ to let users navigate back and forth through their browsing history.

A

Stacks

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

________ are easily adaptable to implement specific scheduling algorithms like dynamic job scheduling

A

BST’s

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

For prioritized job execution where jobs should be processed based on their priority and not on their arrival time, we can use a _______ or a ______

A

Heap or priority queue

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

______ are used to manage function calls in programming languages

A

stacks

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

many backtracking algorithms utilize ______

A

stacks

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

complexity of inserting an element into a binary heap

A

o(log n)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

complexity of removing the minimum element from a min heap

A

o(log n)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

in binary heap if element is at index i what the the indices of the children

A

2i and 2i +1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

which of the following can result in a stack overflow

A

recursive function calls with no base case

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

which divide and conquer algorithm has the worst case time complexity of o(n log n) regardless of the input data

A

heap sort

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

time complexity of creating a binary heap from an unordered array of n elements

A

o(n)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

what sceneario does the quick sort algoritm do poorly

A

already sorted elements

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

how to solve hash collision

A

probe into another key or the new entry is added to the link list at the hash index

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

build max heap 1,12,9,5,6

A

do it

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

insert 25 into max heap 10,5,3,2,4

17
Q

what is 19 replaced with

A

when removing a node chose the last leaf that is unbalanced

18
Q

bst with keys 1,2,3,4,5,6,7

A

degenerate

19
Q

average time of hash table for search insert and deletion

20
Q

worst time com for building heap

21
Q

worst time come for inserting element in binary heap

22
Q

Check if Two Strings Are Anagrams

A

FUNCTION isAnagram(string1, string2)
IF length(string1) ≠ length(string2) THEN
RETURN False // Anagrams must have the same length
END IF
// Convert both strings to lowercase (if case-insensitive comparison is needed)
Convert string1 and string2 to lowercase

// Create frequency dictionaries for both strings
Create an empty dictionary freq1
Create an empty dictionary freq2

FOR each character in string1
  IF character exists in freq1 THEN
    Increment its count
  ELSE
    Add character to freq1 with a count of 1
  END IF
END FOR

FOR each character in string2
  IF character exists in freq2 THEN
    Increment its count
  ELSE
    Add character to freq2 with a count of 1
  END IF
END FOR

// Compare the frequency dictionaries
IF freq1 == freq2 THEN
  RETURN True  // Strings are anagrams
ELSE
  RETURN False
END IF   END FUNCTION END
23
Q

Print Main Diagonal of 2D Array

A

BEGIN
FUNCTION printMainDiagonal(array, n)
FOR i FROM 0 TO n - 1 DO
PRINT array[i][i] // Print the element at the main diagonal
END FOR
END FUNCTION
END

24
Q

Remove a node v from a linked list (can be beginning, middle or end or not in the linked list)

A

BEGIN
FUNCTION removeNode(head, value)
// Case 1: The list is empty
IF head == NULL THEN
PRINT “List is empty.”
RETURN head
END IF

// Case 2: The node to remove is the head node
IF head.data == value THEN
  TEMP = head
  head = head.next  // Update head to the next node
  DELETE TEMP
  RETURN head
END IF

// Case 3: Traverse the list to find the node
PREVIOUS = NULL
CURRENT = head
WHILE CURRENT ≠ NULL AND CURRENT.data ≠ value DO
  PREVIOUS = CURRENT
  CURRENT = CURRENT.next
END WHILE

// Case 4: Node not found
IF CURRENT == NULL THEN
  PRINT "Node not found."
  RETURN head
END IF

// Case 5: Remove the node
PREVIOUS.next = CURRENT.next
DELETE CURRENT

RETURN head   END FUNCTION END