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{2024-1} & \textbf{2024-2} & \textbf{2023} & \textbf{2022} & \textbf{2021-1}&\textbf{2021-2}&\textbf{Minimum}&\textbf{Average}&\textbf{Maximum}
\\\hline\textbf{1 Mark Count} & 1&2&2& 2 &3&2&1&2&3
\\\hline\textbf{2 Marks Count} &4&2&2& 2 &3&4&2&2.83&4
\\\hline\textbf{Total Marks} &9&6&6& 6 &9&10&\bf{6} & \bf{7.67}&\bf{10}\\\hline
\end{array}}}$$

Hot questions in Algorithms

2 votes
1 answer
3121
T(n)= C+T(n-1), if n>1= d, if n≤ 1 What is tme complexity?
3 votes
3 answers
3122
7 votes
1 answer
3123
T(n)=4T(n/2)+n/lognthis can be solved by master theorem but whyt(n)=2t(n/2)+n/logn can't be solved by master theorem ?
1 votes
0 answers
3124
Time complexity of inplace merge sort??
0 votes
0 answers
3125
For a directed graph with positive wights on edges , bellmann ford runs faster than single source shortest pathtrue or false?
1 votes
2 answers
3126
If a directed graph G is cyclic but can be made acyclic by removing one edge,then a depth-first search in Gwill encounter exactly one back edge??
0 votes
1 answer
3127
What is the time complexity to construct a binary tree when inorder and preorder traversal of the tree is given?1. O(n)2.O(n log n)3. O(n2)4.O(n2 log n)
0 votes
1 answer
3128
3 votes
1 answer
3129
0 votes
0 answers
3133
For a table of 12 items given 19,13,05,27,01,26,31,16,02,09,11,21What will be the output when items of bucket are merged after first distribution??
0 votes
0 answers
3134
0 votes
1 answer
3135
Q. An unordered list contains n distinct elements. The number of comparisons to find an element in this list that is either maximum or minimum isAO(nlogn)BO(n)...
1 votes
0 answers
3136
Explain longest comman sbsequence , how to direct solve the lcs problems????
2 votes
1 answer
3137
The problem of finding the set of vertices reachable from a given vertex in a graph can be solved in timeA. O(|V|^2)B. O(|V| + |E|)C. O(|V||E|)D. none of these
2 votes
0 answers
3138
https://gateoverflow.in/664/gate2000-2-17
3 votes
1 answer
3139
How to apply back substiution method on following recursive equation to find time complexity:T(n)= 2 T(n/2) + (n/log n) , where "n" is input.
1 votes
0 answers
3140
https://gateoverflow.in/1076/gate2004-82?show=141252#c141252Can somenone please explain this questionI really dont understand the difference made by the statement "counte...