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

2 votes
2 answers
3021
0 votes
2 answers
3023
3 votes
1 answer
3024
What will be the time complexity for the following recurrence relation?$T(n) = 8\sqrt{n} T(\sqrt{n})+(log n)^{2}$According to me it is $\Theta (n(logn)^{3})$ . Please con...
1 votes
1 answer
3025
1 votes
0 answers
3026
will A[i+1]=key; in the insertion sort be counted as a movement in best case?
0 votes
1 answer
3027
f(n) = theta(n) , g(n) = Omega(n) , h(n) = O(n)then f(n) + [g(n) -h(n)] ?
2 votes
1 answer
3028
time complexity of multiplying two long integers of n - digits each using divide and conquer method isa)O(n^2)b)O(n)c)O(n^3)d)O(n logn)
0 votes
1 answer
3029
An unsorted list contain log(n) (base 2) distinct elements. The time complexity to find an element in this list that is neither maximum nor minimum is?
1 votes
0 answers
3030
if f(n)=n/log nand c=2 Than f*(n)=?
2 votes
1 answer
3031
If F(n) = (log n)n then, is F(n) = O(n2) true?Also, what about F(n) = $\Theta$(n2)
2 votes
1 answer
3032
How to solve the following recurrence by back substitution.T(n)= √2 *T(n/2) + c , for n>1 = a for n=1
0 votes
0 answers
3033
3 votes
1 answer
3035
0 votes
0 answers
3036
What is constant amortized time?How using Amortized Analysis, we could prove that the Dynamic Table scheme has O(1) insertion time when n insertion is being done?Can anyb...
3 votes
1 answer
3037
Consider an array of n integers ranges from 0, 1, ..., n5-1. What is the time complexity of RADIX-SORT when using base-10 representation?
3 votes
1 answer
3039
CAN SOMEONE SOLVE THE NUMBER OF COMPARISIONS FOR COMPUTING MIN AND MAX IN AN ARRAY USING DIVIDE N CONQUER??RECURRENCE RELATION IS$ T(n) = 2 T(\frac{n}{2}) + 2 $IT SHOULD ...
1 votes
1 answer
3040
Recurrence:$T\left ( n \right )\leq T\left ( \frac{n}{5} \right )+T\left ( \frac{7n}{10} \right )+\Theta \left ( n \right )$