Skip to content

Latest commit

 

History

History
32 lines (27 loc) · 1.04 KB

README.md

File metadata and controls

32 lines (27 loc) · 1.04 KB

cBasics

This repo consists of the experiments done by me while learning. Please feel free to comment/suggest. No of files are created on purpose to learn about how to work with multiple .c files. This is not a good approach.

More contents will be added as i get to learn something new.

contents:

  1. linklist
  • gcc -Wall -o linklist link_list.c createlinklist.c reverselinklist.c traverselinklist.c check.c delete.c
  1. doubly linklist
  • gcc -Wall -o doubly_link_list doubly_link_list.c createdoublylinklist.c traverselinklist.c check.c delete.c
  1. stack
    • using linklist
    • gcc -Wall -o stack stack.h stack.c push.c pop.c peek.c check.c
    • using array
    • gcc -Wall -o stack stack.c
  2. queue
    • using linklist
    • queue
    • gcc -Wall -o queue queue.h queue.c enqueue.c dequeue.c peek.c check.c
    • circular queue
    • gcc -Wall -o circular_queue queue.h queue.c enqueue.c dequeue.c peek.c check.c
    • using array
    • queue
    • gcc -Wall -o queue queue.c
    • circular queue
    • gcc -Wall -o circular_queue circular_queue.c