Skip to content

aniruddhapaik/university-code

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

University Codes

Coding Exercises and Experiments.

💾 Data Structures

Dynamic Linear Data Structures

Linked Lists

Graphs

  • Finite Multi Graph (implemented using std::vector and std::unordered_map. can be made directed or undirected)
    • Vertex (storing neighbors and edge costs in std::unordered_map inside corresponding vertices)

📑 Algorithms

Searching Algorithms

Evaluation of Arithmetic Expression

Tree traversal techniques

Graph traversal techniques

Dijkstra's Algorithm

Sorting Algorithms