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}}}$$

Recent questions in Algorithms

0 votes
1 answer
3225
Merging K sorted list each of size n/k into one sorted list of n-elements using Heap Sort will take how much time?
1 votes
1 answer
3226
Brute force algorithm time complexity for subset sum problema) O(N logN) b)O(N^2) c) O(N^2 logN) d) O(2^N)
2 votes
2 answers
3227
Solve using Masters theorem 2T (n/2) + n log n
2 votes
4 answers
3228
Solve this recurrence equation using Master's theoremT(n) = 64 T(n/8) - n 2 log n
1 votes
2 answers
3229
Find the upper bound of given function:f(n) =na) O(1)b) O( n)c) O(n 2)d) Both b and c
1 votes
2 answers
3233
0 votes
2 answers
3234
0 votes
1 answer
3235
Given a hash table with 6 keys and 10 slots, with simple uniform hashing. If collisions are resolved by chaining then the probability that first slot ends up empty?
6 votes
1 answer
3236
2 votes
3 answers
3237
Can Prim's and Kruskal's algorithm yield different minimum spanning trees? Explain why or why not.
4 votes
1 answer
3238
The recurrence equation$T(1) = 1$$T(n) = 2T(n-1) + n, n \geq 2$evaluates to $a.2^{n+1} - bn - c$, what is the value of $100a+ 10b+c$?
0 votes
1 answer
3239
5 votes
2 answers
3240