Skip to content

Implementation of common data structures with C. Includes linked list, list, stack, heap, BST, and hash table.

Notifications You must be signed in to change notification settings

christian-doucette/data_structs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Data Structs

Implementation of common data structures in C. Currently includes:

  1. Linked List
  2. Binary Search Tree
  3. List
  4. Stack
  5. Hash Table
  6. Heap  
     

Motivation

The motivation of this project is to gain experience with:

  1. Common data structures and their associated methods
  2. Creating time/memory efficient implementations of these
  3. Dynamic memory allocation and handling in C

Additionally, since C's standard library does not include many important data structures, I wanted to have a nice data structure library to use on future projects in C.  
 

Details

Each data structure includes init(), print(), and free() methods. Below, I describe the additional methods for each data structure. I also include the average-case time complexity for my implementations.
 
 

Linked List (code)

My linked list is a singly linked list that stores integer values. It also includes a header that tracks the head and tail of the linked list.

Methods:

  1. Append - O(1): appends a value onto the end of a linked list
  2. Search - O(n): checks if a value is in the linked list
  3. Remove Head - O(1): removes the head of the linked list and returns its value

Also, note that this linked list can be used as an efficient queue implementation, by using Append for enqueue and Remove Head for dequeue.
 
 

Binary Search Tree (code)

My binary search tree is a standard BST that stores integers. Currently it does not rebalance. So, as insert, search, and min depend on the height of the tree, their absolute worst case complexities are O(n) - however, average case is O(log(n))

Methods:

  1. Insert - O(log(n)): Inserts a value into the BST
  2. Search - O(log(n)): Checks if the BST contains a specific value
  3. Min - O(log(n)): Returns the minimum value in the BST
  4. Num Nodes - O(n): Returns the number of nodes in the BST
  5. Height - O(n): Returns the height of the BST
     
     

List (code)

My list is a dynamically-sized array, like Python lists or Java ArrayLists. It works by doubling the size of the array whenever more space is needed. Also, if the array ever reaches a quarter of its max size, it halves the array size. For both append and remove, since the costly reallocation only occurs rarely, amortized time complexity is O(1).

Methods:

  1. Append - O(1): Appends a value v to the list
  2. Remove Last - O(1): Removes the last value of the list
  3. Index - O(1): Returns value at a given index
  4. Len - O(1): Returns current length of the list
     
     

Stack (code)

My stack takes in size as an argument to its init() method.

Methods:

  1. Is Empty - O(1): Checks if the stack is empty
  2. Is Full - O(1): Checks if the stack is full
  3. Push - O(1): Pushes a value onto the top of the stack
  4. Pop - O(1): Removes a value from the top of the stack and returns it
  5. Peek - O(1): Returns the value at the top of the stack
     
     

Hash Table (code)

My hash table is a closed address hash table that uses my linked lists to resolve collisions. The init() method for my hash tables takes in the size of the table as an argument.

Methods:

  1. Insert - O(1): Inserts a value into the hash table
  2. Search - O(1): Checks if a value is in the hash table  
     

Heap (code)

My heap is a min-heap storing integers. The init() method for my heap takes in the size of the heap as an argument.

Methods:

  1. Is Empty - O(1): Checks if the heap is empty
  2. Is Full - O(1): Checks if the heap is full
  3. Insert - O(log(n)): Inserts a new value into the heap
  4. Min - O(1): Returns the minimum value in the heap
  5. Extract Min - O(log(n)): Returns the minimum value and removes it from the heap  
     

About

Implementation of common data structures with C. Includes linked list, list, stack, heap, BST, and hash table.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages