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

0 votes
1 answer
1801
in case of comparision sort max possible is n(n-1)/2
0 votes
1 answer
1803
0 votes
1 answer
1805
Can shortest path contains positive weight cycle???Please explain with examples.
0 votes
1 answer
1807
Can anyone please explain
0 votes
1 answer
1809
given n elements merge them into one sorted list using merge procedure then what is the time complexity for this ?explain with example
0 votes
1 answer
1812
T(1) = 1 T(n) = 2T(n - 1) + n, n ≥ 2 evaluates to(a) 2n + 1 - n – 2(b) 2n – n(c) 2n + 1 – 2n – 2(d) 2n – n HOW TO EVALUATES USING MASTER THEOREM
0 votes
1 answer
1813
0 votes
1 answer
1817
I want to learn to find time complexity of the recurrence relation of an algorithm.Please suggest some good links or any gatetoverflow imp questions links to look as exam...
0 votes
1 answer
1818
for(i=1;i<=n;++i){j=1;while(j<=n)j=2*j;for(k=1;k<=n;++k)c=c+1;}then what is the time complexity will be?
0 votes
1 answer
1820
√logx = O(loglogx) is it true or false?and explain why?