https://github.com/k4u5h4l/ada-lab-progs
A collection of programs done in ada lab, sem 4.
https://github.com/k4u5h4l/ada-lab-progs
algorithms c
Last synced: about 1 year ago
JSON representation
A collection of programs done in ada lab, sem 4.
- Host: GitHub
- URL: https://github.com/k4u5h4l/ada-lab-progs
- Owner: k4u5h4L
- License: gpl-3.0
- Created: 2020-07-07T06:47:04.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-07-23T08:22:40.000Z (almost 6 years ago)
- Last Synced: 2025-04-02T03:51:07.210Z (over 1 year ago)
- Topics: algorithms, c
- Language: C
- Homepage:
- Size: 45.9 KB
- Stars: 2
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Ada lab programs
This is a collection of programs done in algorithms lab.
These programs are done in C.
The programs are:
- [Breadth-first search](https://github.com/k4u5h4L/ada-lab-progs/blob/master/programs/bfs.c)
- [Depth-first search](https://github.com/k4u5h4L/ada-lab-progs/blob/master/programs/dfs.c)
- [Mergesort](https://github.com/k4u5h4L/ada-lab-progs/blob/master/programs/mergesort.c)
- [Quicksort](https://github.com/k4u5h4L/ada-lab-progs/blob/master/programs/quicksort.c)
- [Heapsort](https://github.com/k4u5h4L/ada-lab-progs/blob/master/programs/heapsort.c)
- [Horspool's algorithm](https://github.com/k4u5h4L/ada-lab-progs/blob/master/programs/new-progs/horspool.c)
- [Warshall's algorithm](https://github.com/k4u5h4L/ada-lab-progs/blob/master/programs/warshall.c)
- [Floyd's algorithm](https://github.com/k4u5h4L/ada-lab-progs/blob/master/programs/floyd.c)
- [Knapsack algorithm](https://github.com/k4u5h4L/ada-lab-progs/blob/master/programs/new-progs/knapsack.c)
- [Djistra's algorithm](https://github.com/k4u5h4L/ada-lab-progs/blob/master/programs/new-progs/djikstra.c)
- [Prim's algorithm](https://github.com/k4u5h4L/ada-lab-progs/blob/master/programs/new-progs/prim.c)
- [Kruskal's algorithm](https://github.com/k4u5h4L/ada-lab-progs/blob/master/programs/new-progs/kruskal.c)
- [N-queen's method](https://github.com/k4u5h4L/ada-lab-progs/blob/master/programs/new-progs/n-queens.c)