Skip to content

Commit 25dbdf7

Browse files
authored
Re arranged the modules
1 parent e968dd4 commit 25dbdf7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/data_structures/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ mod fenwick_tree;
55
mod floyds_algorithm;
66
pub mod graph;
77
mod hash_table;
8+
mod queue_using_singly_linked_list;
89
mod heap;
910
mod lazy_segment_tree;
1011
mod linked_list;
@@ -19,8 +20,8 @@ mod treap;
1920
mod trie;
2021
mod union_find;
2122
mod veb_tree;
22-
mod queue_using_singly_linked_list;
2323

24+
pub use self::queue_using_singly_linked_list::LinkedListQueue;
2425
pub use self::avl_tree::AVLTree;
2526
pub use self::b_tree::BTree;
2627
pub use self::binary_search_tree::BinarySearchTree;
@@ -44,5 +45,4 @@ pub use self::treap::Treap;
4445
pub use self::trie::Trie;
4546
pub use self::union_find::UnionFind;
4647
pub use self::veb_tree::VebTree;
47-
pub use self::queue_using_singly_linked_list::LinkedListQueue;
4848

0 commit comments

Comments
 (0)