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

Most answered questions in Algorithms

0 votes
1 answer
2006
Let $f (n) = Ο(n), g(n) = \Omega(n)$ and $h(n) = \theta(n)$. Then $g(n) + f(n).h(n)$ is ______How to solve such examples.Rules for math of asymptotic notations(mul,div,a...
1 votes
1 answer
2007
2 votes
1 answer
2008
Given f(n) = ω(n2).Which of the following can never hold?a. f(n) = O (n3)b. f(n) = Ω (n2)c. f(n) = θ (n2)d. f(n) = ω (n)
2 votes
1 answer
2010
3 votes
1 answer
2013
2 votes
1 answer
2014
3 votes
1 answer
2017
Given A, an array of size n, comprised of an increasing sequence of numbers followed immediately by a decreasing one. What is worst case time complexity of optimal algori...
1 votes
1 answer
2018
A sorting algorithm is stable if duplicate elements remain in the same relative position after sorting.What is the meaning of this statement
2 votes
1 answer
2019
T(n)=4T(n/2)+nTC using iterative method with steps in short :)T(1) = 1