Web Page

Searching, Sorting, Hashing, Asymptotic worst case time and Space complexity, Algorithm design techniques: Greedy, Dynamic programming, and Divide‐and‐conquer, Graph search, Minimum spanning trees, Shortest paths.

$$\scriptsize{\overset{{\large{\textbf{Mark Distribution in Previous GATE}}}}{\begin{array}{|c|c|c|c|c|c|c|c|}\hline
\textbf{Year}& \textbf{2022} & \textbf{2021-1}&\textbf{2021-2}&\textbf{2020}&\textbf{2019}&\textbf{2018}&\textbf{2017-1}&\textbf{2017-2}&\textbf{2016-1}&\textbf{2016-2}&\textbf{Minimum}&\textbf{Average}&\textbf{Maximum}
\\\hline\textbf{1 Mark Count} & 2 &3&2&3&2&0&2&2&3&3&0&2.2&3
\\\hline\textbf{2 Marks Count} & 2 &3&4&4&2&4&2&3&2&3&2&2.9&4
\\\hline\textbf{Total Marks} & 6 &9&10&11&6&8&6&8&7&9&\bf{6}&\bf{8}&\bf{11}\\\hline
\end{array}}}$$

Most answered questions in Algorithms

2 votes
0 answers
4351
1 votes
0 answers
4352
1 votes
0 answers
4353
1 votes
0 answers
4354
Consider the recurrence T(n)=2T(n/2)+nlogn Find complexity
1 votes
0 answers
4358
Why is the space complexity of heap sort O(1) and not O(log n) even if Heap sort internally calls max_heapify whose space complexity is O(log n) due to the stack (recursi...
2 votes
0 answers
4359
In the absence of a comparator, the time complexity of a generate-and test type of algorithm to sort n numbers would be of the order : (A) log n(B) n2(C) n(D) n!
0 votes
0 answers
4362
In the max heap where the smallest element residei)if all element are distinct?ii) if all element are not distinct?What is the time complexity in both the cases?If any sp...
0 votes
0 answers
4364
0 votes
0 answers
4366
0 votes
0 answers
4367
1^k+2^k+3^k+..........n^k=n^k+n^k+n^k+........n^k(n times)=n^(k+1)=O(nk+1)But this is the actual tight bound or it can further be minimized?
1 votes
0 answers
4370