refactored data structures to their own mod

This commit is contained in:
specCon18 2024-05-19 01:24:41 -04:00
parent 4a53a4cac5
commit 3a028dfdf2
3 changed files with 180 additions and 60 deletions

View file

@ -3,6 +3,7 @@ mod binary_search;
mod bubble_sort;
mod quick_sort;
mod dijkstras;
mod data_structures;
fn linear_search_demo(){
println!("-------------------");
println!("LINEAR SEARCH DEMO:");