This pull request includes several new implementations of classic data structures and algorithms in C. The most important changes include the addition of Bubble Sort, Circular Queue, Fibonacci sequence, Insertion Sort, Linked List, Stack, and Tower of Hanoi implementations.
New implementations:
C/BubbleSort.c: Added a Bubble Sort algorithm to sort an array of integers.
C/CircularQueue.c: Added a Circular Queue implementation with enqueue, dequeue, and display operations.
C/Fibonacci.c: Added a recursive function to compute the nth Fibonacci number.
C/InsertionSort.c: Added an Insertion Sort algorithm to sort an array of integers.
C/LinkedList.c: Added a Linked List implementation with various operations such as insertion, deletion, display, and search.
C/Stack.c: Added a Stack implementation with push, pop, and display operations.
C/TOH.c: Added a recursive solution for the Tower of Hanoi problem.
This pull request includes several new implementations of classic data structures and algorithms in C. The most important changes include the addition of Bubble Sort, Circular Queue, Fibonacci sequence, Insertion Sort, Linked List, Stack, and Tower of Hanoi implementations.
New implementations:
C/BubbleSort.c
: Added a Bubble Sort algorithm to sort an array of integers.C/CircularQueue.c
: Added a Circular Queue implementation with enqueue, dequeue, and display operations.C/Fibonacci.c
: Added a recursive function to compute the nth Fibonacci number.C/InsertionSort.c
: Added an Insertion Sort algorithm to sort an array of integers.C/LinkedList.c
: Added a Linked List implementation with various operations such as insertion, deletion, display, and search.C/Stack.c
: Added a Stack implementation with push, pop, and display operations.C/TOH.c
: Added a recursive solution for the Tower of Hanoi problem.