Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 500 Bytes

README.md

File metadata and controls

22 lines (18 loc) · 500 Bytes

Data structure in C programming language

How to execute program

  1. generate object files (e.g. Linked List Stack)
gcc -c linked_list_stack.c -o linked_list_stack.o
gcc -c singly_linked_list.c -o singly_linked_list.o
  1. link files and generate executable file
gcc linked_list_stack.o ../LinkedList/singly_linked_list.o -o program

Linked List

  • Singly Linked List
  • Doubly Linked List
  • Circular Linked List

Stack

  • Array Stack
  • Linked List Stack