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
3641
2 votes
1 answer
3642
what will be the change in time when quick sort is used over the heap sort to sort the edges in order to find the MST using kruskal algorithm...no of edges = 16
1 votes
1 answer
3643
Assume we are given that f(n) = Οg(n), then which of the following can be stated true2f(n) = Ο(2g(n)) log f(n) = Ο(log (g(n))g(n) ≠ Ω f(n)None of these
0 votes
1 answer
3644
please explain these few point:how is longest path between any pair of vertices different from diameter of a agraph.?in dijkstra algorithm,each edge is relaxed eaxtly one...
0 votes
2 answers
3645
What is the time complexity to count the number of leaf nodes in a tree? I am getting O(nlogn) but answer is O(n) please anybody explain in detail
1 votes
2 answers
3646
0 votes
1 answer
3647
Let A =[a1, a2, …, an] be a one-dimensional array of integers define a MEGA-PEAK in A to be an element ai belongs A such that ai >= aj for all aj with | j – i | <= 2....
4 votes
1 answer
3650
You are given a 1 billion numbers. The time require in seconds to sort them provided sorting thousand numbers takes 100 microseconds will be _______10,00051230065536
2 votes
1 answer
3654
Is quick sort in-place algorithm?
2 votes
1 answer
3657
0 votes
0 answers
3658
What is the tightest upper bound to $T(n) = T(n-1) + 2^n$?$O(n2^n)$$O(2^n)$$O(2^{2n})$None
0 votes
0 answers
3659
in an effort to make MERGE-SORT faster, you decide to divide the array into k equal sized, disjoint subarrays, where k 2. This means that you have to merge k lists. How ...