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
3001
0 votes
3 answers
3002
3 votes
1 answer
3004
0 votes
1 answer
3005
3 votes
1 answer
3006
what is the tightest upper bound of T(n)=T(n-1)+2n
0 votes
1 answer
3007
T(n)=2T(log n)+c c is a constant. Base condition is if(n<2) return 1What will be the tightest bound on time complexity?
0 votes
0 answers
3010
3 votes
0 answers
3011
i have read from made easy coaching that DFS cant be used to verify given graph is bipartite or not...but there are some refernces i have found on some site where DFS ca...
0 votes
1 answer
3012
1 votes
2 answers
3013
Pls Explain how to do this.
0 votes
1 answer
3014
0 votes
1 answer
3016
0 votes
2 answers
3017
Given 8 sorted lists, each list of size n/8. If we merge these lists into a single sorted list of n elements, how many comparisons are required in worst case using an eff...
0 votes
0 answers
3018
Which of the following statements is/are TRUE?I. Sorting 7 numbers takes 10 comparisons using binary treeII. Merge sort can be implemented to be stablePls explain.