Showing posts with label Algorithms. Show all posts
Showing posts with label Algorithms. Show all posts

Algorithms Gate CS&IT

Sorting Algorithms - 

Selection Sort Questions : Inplace, Straight selection, Time Com, Space Com

Recuccernce relations for sorting algorithms.

Bubble Sort Questions: External sorting

Insertion sort

Quick sort

merge sort

GATE QUESTIONS
Sorting gate que

Knapsack Problem - PPT

Dijkstras algorithm

Bellmanford Algorithm

Huffman Coding

Variable length coding.


All pair shortest path problem

Floyed - Warshall Algorithm - Watch in UT

Travelling salesman Problem - web

Optimal merge Pattern.

Prim's Algorithm

krushkal Algorithm


Previous year GATE Questions

https://practicepaper.in/gate-cse/algorithm

https://www.geeksforgeeks.org/algorithms-gate-questions/

https://questions.examside.com/past-years/gate/gate-cse/algorithms

Popular Post

MindMaps

Featured post

Question 1: Reverse Words in a String III

  def reverseWords(s: str) -> str: words = s.split() return ' '.join(word[::-1] for word in words)