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

0 votes
0 answers
2101
https://gateoverflow.in/2615/gate1995-2-3what does while x<>y means ?how to begin the program?
0 votes
2 answers
2102
Best and Worst case input for:1. Selection Sort2. Insertion Sort3. Merge Sort4. Quick Sort5. Bucket Sort6. Counting Sort7. Bubble Sort
0 votes
2 answers
2103
What is the time complexity for the code below?for(i=1; i<=n;i++){for(j=1;j<=n;j++){for(k=j+1;k<=n;k++)printf("Hi");}}
0 votes
0 answers
2104
https://gateoverflow.in/82551/gate1987-11cIS IN SYLLABUS ?? WHAT IS THAT ALGO USED HERE??
0 votes
3 answers
2105
Solve using Master's Theorem$T(n)=T(n/2)+$ 2n
0 votes
0 answers
2107
I am getting confused among the terms : Backtracking, Branch and Bound Paradigm, Dynamic Programming and Greedy Algorithm.Can anyone tell their similarities and differenc...
1 votes
1 answer
2108
When sorting technique is called stable?
0 votes
1 answer
2110
0 votes
2 answers
2112
How the slowness and the fastness of any algorithm depends ?Is (n/logn) is slower than log(logn) ?
0 votes
0 answers
2113
https://gateoverflow.in/957/gate2003-70CAN THIS CASE GIVEN IN THIS EXAMPLE CAN BE SIMULATE IN 3-4 MINUTES IN EXAM .....??
0 votes
1 answer
2114
I am not able to understand whether to add constant or not while forming recursive equation
2 votes
1 answer
2115
In coremen it is given that$\log^kn$=$(\log n)^k$$\log\log n$ is not equal to $\log^2n$ i understood it with exampleplease correct me if I am wrong .
1 votes
0 answers
2116
Is it True or FalseLet there be two algorithmsIf an algorithm is growing asymptotically faster will take more time than other.
1 votes
1 answer
2117
for(i=n,j=1;i>=1;i=i/2,j=j+i)What is the value of j by the end of the loop?a) O(log n) b)O(n) c) O(n2) d)O(n log n) How do I calculate this?
3 votes
2 answers
2118
Consider following program and determine the value of p after execution of program:-main() { p = 1; for(i=1;i<=n;i++) { for(j=1;j<=n;j=5*j) { p = p + n; } } }I think p's ...
1 votes
1 answer
2119
1 votes
1 answer
2120