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

Hot questions in Algorithms

9 votes
2 answers
2041
How many distinct minimum weight spanning trees does the following undirected, weighted graph have ?$1$$2$$4$$6$$8$
1 votes
0 answers
2042
What is the number of Comparison to sort below arrays using quick sort using first element as pivot ?Please show steps .A1=4,1,5,3,2A2=1,2,3,4,5
3 votes
1 answer
2043
You have an array of n elements. Suppose you implement quick sort by always choosing the central element of the array as the pivot. Then the tightest lower bound for the...
7 votes
5 answers
2044
The number of spanning trees for a complete graph with seven vertices is$2^5$$7^5$$3^5$$2^{2 \times 5}$
0 votes
2 answers
2047
0 votes
1 answer
2048
Condition satisfies or not
0 votes
2 answers
2049
can you please explain how 1-(1/2)^ln(n) becomes (n-1)/n ?
1 votes
1 answer
2050
Please find the time complexity of the following code:-int i,s1;i=1,s1=1; while(s1<=n) { i++; s1+=s1+i; printf("Hope"); }
0 votes
2 answers
2052
what will be the result when the following postfix expression with single digit operand is evaluated using stack:8 2 3 ^ / 2 3 * + 5 1 * - ? A: 6, 1B: 5, 7C: 3, 2D: 1, 5
0 votes
0 answers
2053
https://gateoverflow.in/20617/tifr2011-b-311+2(n-2) is correct ???i.e option d looks more correct....??
0 votes
0 answers
2054
Please give an example i didn't get itThe depth of any DFS tree rooted at a vertex is at least as much as thedepth of any BFS tree rooted at the same vertex.
0 votes
0 answers
2055
What is meant by wrong path in Dijikstra's algo. Can anyone please explain
0 votes
0 answers
2056
1 votes
0 answers
2059
TRUE / FALSE Explain Please..An undirected graph is said to be Hamiltonian if it has a cycle containing all the vertices. Any DFS tree on a Hamiltonian graph must have de...
0 votes
0 answers
2060