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

2 votes
1 answer
2221
there is a sorted array which is of very large. every element is repeated more than once except one element. how much time will it take to find the element?
4 votes
1 answer
2222
Determine the time complexity of the program segment given below:i= n; while (i>0) { k=1; for (j=1; j<=n; j+=k) { k++; } i= i/2; }(A) O(n2)(B) O(n.log n)(C) O(log2 n)(D) ...
2 votes
1 answer
2224
The minimum number of comparisons required to sort 25 elements is ____
0 votes
1 answer
2225
A complete graph G with 5 nodes has positive weight edge ,each node has distinct weight with an integer value and maximum weight is equal to the number of edges in G.What...
3 votes
1 answer
2227
1 votes
1 answer
2228
The solution for the recurrence:T(1)=1T(n) = T(n-1) + T(n-2) + 1a. log(n) <= T(n)=nb. n<=T(n)<=n2c. n2 <= T(n)<= 2nd. 2n <= T(n) <=n!
6 votes
1 answer
2230
1 votes
1 answer
2235
4 votes
1 answer
2236
There are two sorted list each of length $n$. An element to be searched in the both the lists. The lists are mutually exclusive. The maximum number of comparisons require...
5 votes
1 answer
2238
You are given an array of 64 elements, minimum number of comparisons required to find out second largest element among all will be _______.
1 votes
1 answer
2239
0 votes
1 answer
2240
can masters theorem be used when base condition is given in a recurrence ?can we directly apply masters theorem to any recurrence ?