Featured

Basics of Graphs

We will be covering what are graph data structures, along with how to represent them, traverse them, find minimum spanning tree using prim and kruskal, finding short path using dijkstra and sort the graph using topological sort.

Read More Basics of Graphs

Data Structures

Data Structure is a way of collecting and organizing data ,such that we can optimize our code . For example 1.You can either Store data in tuple or list , depending on operations you want to perform. 2. You can either use yield function use in python or declare data type to store temporary data.As […]

Read More Data Structures