Skip to content

ObaidaHY/Data-Structures

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

48 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Advanced Data-Structures

project #1 : AVLTreeList

Implementing the ADT List with Balanced Binary Trees , specifically AVL binary Trees.
we're interested in making some functions operate with run time complexity of O(logn) WC ,
and as anticipated the run time complexity of other functions would be affected (kind of a trade-off)

Note : project 1 is implemented with Python.

project #2 : HashTables

Implementing Hash Tables with Open Addressing (for dealing with collisions) using 4 different probing methods :
Linear Probing, Quadratic Probing, Alternate Quadratic Probing, Double Hash Probing.
we're interested in comparing the performance of these different probing methods in terms of time efficiency,
and we got to really interesting results.

Note : project 2 is implemented with Java.

project #3 : Maze Generator (not finished yet)

"Union-Find , the data structure that left a deep impression on me."
Generating random maze using Disjoint-Set (Union-Find) and randomly uniting nodes.
A Disjoint set is represented by 2 nested lists , and each node is represented by (i,j) where i,j are the indecies of row,column (respectively) of the node in the nested list
the project was created after finishing Data-Structures course at Tel-Aviv University, due to the impression Union-Find left on me.
References :

Note : project 3 is implemented with Python.

About

Advanced Data-Structures projects

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published