1
GATE CSE 2025 Set 2
Numerical
+1
-0

Suppose the values $10,-4,15,30,20,5,60,19$ are inserted in that order into an initially empty binary search tree. Let $T$ be the resulting binary search tree. The number of edges in the path from the node containing 19 to the root node of $T$ is ________ (Answer in integer)

Your input ____
2
GATE CSE 2025 Set 2
MCQ (Single Correct Answer)
+2
-0.67

A meld operation on two instances of a data structure combines them into one single instance of the same data structure. Consider the following data structures:

P: Unsorted doubly linked list with pointers to the head node and tail node of the list.

Q: Min-heap implemented using an array.

R: Binary Search Tree.

Which ONE of the following options gives the worst-case time complexities for meld operation on instances of size $n$ of these data structures?

A
P: $\Theta(1), \mathrm{Q}: \Theta(n), \mathrm{R}: \Theta(n)$
B
$\mathrm{P}: \Theta(1), \mathrm{Q}: \Theta(n \log n), \mathrm{R}: \Theta(n)$
C
$\mathrm{P}: \Theta(n), \mathrm{Q}: \Theta(n \log n), \mathrm{R}: \Theta\left(n^2\right)$
D
$\mathrm{P}: \Theta(1), \mathrm{Q}: \Theta(n), \mathrm{R}: \Theta(n \log n)$
3
GATE CSE 2025 Set 2
MCQ (More than One Correct Answer)
+2
-0.67

Consider a stack data structure into which we can PUSH and POP records. Assume that each record pushed in the stack has a positive integer key and that all keys are distinct. We wish to augment the stack data structure with an $\mathrm{O}(1)$ time MIN operation that returns a pointer to the record with smallest key present in the stack

1. without deleting the corresponding record, and

2. without increasing the complexities of the standard stack operations.

Which one or more of the following approach(es) can achieve it?

A
Keep with every record in the stack, a pointer to the record with the smallest key below it.
B
Keep a pointer to the record with the smallest key in the stack.
C
Keep an auxiliary array in which the key values of the records in the stack are maintained in sorted order.
D
Keep a Min-Heap in which the key values of the records in the stack are maintained.
4
GATE CSE 2025 Set 2
Numerical
+2
-0

Consider the following algorithm someAlgo that takes an undirected graph $G$ as input. someAlgo ( $G$ )

1. Let $v$ be any vertex in $G$. Run BFS on $G$ starting at $v$. Let $u$ be a vertex in $G$ at maximum distance from $v$ as given by the BFS.

2. Run BFS on $G$ again with $u$ as the starting vertex. Let $z$ be the vertex at maximum distance from $u$ as given by the BFS.

3. Output the distance between $u$ and $z$ in $G$.

The output of someAlgo( $T$ ) for the tree shown in the given figure is $\qquad$ . (Answer in integer)

GATE CSE 2025 Set 2 Data Structures - Graphs Question 1 English

Your input ____
EXAM MAP
Medical
NEETAIIMS
Graduate Aptitude Test in Engineering
GATE CSEGATE ECEGATE EEGATE MEGATE CEGATE PIGATE IN
Civil Services
UPSC Civil Service
Defence
NDA
Staff Selection Commission
SSC CGL Tier I
CBSE
Class 12