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

0 votes
2 answers
1981
0 votes
0 answers
1982
What are the asymptotic running times for INSERT, EXTRACT-MIN, and DECREASE-KEY of Floyd Warshall and Bellman Ford Algorithm?
0 votes
2 answers
1983
find time complexityf(int n){int i=1;while(i<n){int j=n;while(j>0)j=j/2;i=i*2;}}
1 votes
0 answers
1984
0 votes
0 answers
1986
int recfunc( int n )2 { if( )3 return n;4 int i=0;5 while(i<100){6 printf ("HELLO");7 i=i+1;}8 int a;9 a=2* recfunc(n/2);10 while(j<a){11 printf("BYE !");12...
0 votes
0 answers
1987
Running time of an algorithm T(n), where n is input size, is given by T(n)=T(n-6)+n2 if n>7 and T(n)=1 if n<=7. The algorithm is order of θ notation is__ ?The answer is ...
0 votes
0 answers
1988
Longest subarray having average greater than or equal to x. Given an array of N integers. The task is to find the longest contiguous subarray so that the average of its e...
0 votes
1 answer
1989
0 votes
0 answers
1990
1 votes
3 answers
1992
0 votes
1 answer
1993
0 votes
0 answers
1994
suppose Merge sort algorithm takes 2 sec to sort a set of 64 keys then how much time will it take to sort a set of 512 keys ??
0 votes
0 answers
1995
0 votes
3 answers
1996
What is the time complexity of the following?for(i=0; i < n *n ; i = i *i)print("*");
0 votes
1 answer
1997
C function let n>=m.int gcd(n,m){if(n%m==0) return m;n=n%m;return gcd(m,n);} time complexity
0 votes
0 answers
1999
https://gateoverflow.in/258/gate2003-66if we are using binary search thn it should be O(logn) ,how it is O(log n)^2?
0 votes
0 answers
2000
solve by using tree method!