Data-Structure-and-Algorithm icon indicating copy to clipboard operation
Data-Structure-and-Algorithm copied to clipboard

Knowledges about algorithms and data structure applied in C.

ProjectLearningsClone this projectLicense

Data Structure and Algorithms

This repository has the aim to store knowledge's about Algorithm and Data Structure in C. All the algorithms has memory leak debugged with DrMemory.

Learnings

Algorithms

  • Insertion Sort
  • Selection Sort
  • Quick Sort

Data Structures

  • Stack
    • Last in First Out
  • Queue
    • First in first out
    • Descending order queue
  • Linked Lists
    • Doubly Linked Lists
    • Simple Linked Lists
  • Binary Trees
    • Binary Search Trees
    • AVL Trees

Clone this project

Prerequisites

  • C Compiler such as GCC
  • GDB C Debugger

Clone

git clone [email protected]:Fernanda-Kipper/Data-Structure-and-Algorithm.git

Run

gcc filename.c -o a.exe
./a.exe

Debbug

In the root directory

gcc filename.c -o a.exe -g
PRESS F5

License

This project is under MIT license.