An open API service indexing awesome lists of open source software.

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.

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)