Data Structures and Algorithms Flashcard

Data Structures and Algorithms Flashcard

Assessment

Flashcard

English

University

Practice Problem

Hard

Created by

Wayground Content

FREE Resource

Student preview

quiz-placeholder

15 questions

Show all answers

1.

FLASHCARD QUESTION

Front

What is the time complexity of picking an element in a binary search tree T that is smaller than the maximum element in T?

Back

Θ(1)

2.

FLASHCARD QUESTION

Front

What is an application of queues in computer science?

Back

Job scheduling, Print queue management, Network protocol implementation, All of the above.

3.

FLASHCARD QUESTION

Front

Which sorting algorithm has a time complexity of O(n log n)?

Back

Merge Sort.

4.

FLASHCARD QUESTION

Front

What is the output of sizeof(arr) for int arr[10] in C?

Back

40.

5.

FLASHCARD QUESTION

Front

What does the following pseudo-code do? function traverse(head): current = head while current != NULL: print(current.data) current = current.next

Back

Prints all elements of a linked list.

6.

FLASHCARD QUESTION

Front

Define a binary search tree (BST).

Back

A binary search tree is a data structure that maintains sorted order, where each node has at most two children, and the left child contains values less than the parent node, while the right child contains values greater.

7.

FLASHCARD QUESTION

Front

What is the average time complexity for searching an element in a balanced binary search tree?

Back

Θ(log n).

Create a free account and access millions of resources

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?