Skip to content

saralnajjar/data-structures-kotlin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 

Repository files navigation

Data Structures in Kotlin

Core data structures implemented from scratch in Kotlin.

Structure

data-structures-kotlin/ ├── src/ │ ├── LinkedList.kt │ ├── Stack.kt │ ├── Queue.kt │ ├── BinarySearchTree.kt │ └── HashTable.kt └── README.md

Implementations

Data Structure File Description
Linked List LinkedList.kt Singly linked list with insert, delete, search, reverse
Stack Stack.kt LIFO stack built on linked list
Queue Queue.kt FIFO queue with enqueue, dequeue, peek
Binary Search Tree BinarySearchTree.kt BST with insert, search, in-order traversal
Hash Table HashTable.kt Hash table with chaining for collision handling

Built as part of ongoing practice alongside BSc Computer Science at the University of Leeds.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages