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 viewed questions in Algorithms

1 votes
0 answers
4351
0 votes
0 answers
4352
0 votes
0 answers
4353
Use a recursion tree to determine a good asymptotic upper bound on the recurrence $T(n) =2T(n-1) + 1$.Use the substitution method to verify your answer.
0 votes
0 answers
4356
0 votes
0 answers
4357
what will be best case running time for bubble sort ?? is it depends on input sequence
1 votes
0 answers
4358
0 votes
0 answers
4359
0 votes
0 answers
4360
What is the complexity of of searching in the following bst3,2,1,6,5,4,9,8,7..,.,,,,..,n,n-1,n-2Is it n as tge tree is right skwed and reaching to bottom takes O(n/3) ste...
0 votes
0 answers
4361
What is the time complexity?i=n; while(i>0) { k=1; for(j=1;j<=n;j+=k) k++; i=i/2; }a) O(n2)b) O(n logn)c) O(log2n)d) O(logn n1/2
0 votes
0 answers
4362
1 votes
0 answers
4363
Merge sort using a linked list is efficient compared to array in terms of space complexity.plz explain
0 votes
0 answers
4364
plss elaborate it
3 votes
1 answer
4365
2 votes
0 answers
4366
https://gateoverflow.in/39620/gate2016-2-41HOW WE ARE DOING IN O(M+N) TIME ......WHAT IS PROCEDURE TO DO THAT ?
0 votes
0 answers
4367
0 votes
0 answers
4368
<p><a href="https://gateoverflow.in/224778/searching">https://gateoverflow.in/224778/searching</a></p <p>what is actual answer becz using two pointers at extremes we are ...
0 votes
0 answers
4369
0 votes
0 answers
4370
Stack space size of counting numbers of inversion??????