diff --git a/algs4/linear_probing_hash_st.py b/algs4/linear_probing_hash_st.py index 8033f3c..9b020fa 100644 --- a/algs4/linear_probing_hash_st.py +++ b/algs4/linear_probing_hash_st.py @@ -1,15 +1,15 @@ """ - Execution: python RedBlackBST.py < input.txt + Execution: python linear_probing_hash_st.py < input.txt Data files: https://algs4.cs.princeton.edu/33balanced/tinyST.txt - A symbol table implemented using a left-leaning red-black BST. + A symbol table implemented using a linear probing hash. This is the 2-3 version. % more tinyST.txt S E A R C H E X A M P L E - % python RedBlackBST.py < tinyST.txt + % python linear_probing_hash_st.py < tinyST.txt A 8 C 4 E 12 diff --git a/algs4/separate_chaining_hash_st.py b/algs4/separate_chaining_hash_st.py index 53a18e2..2ed498e 100644 --- a/algs4/separate_chaining_hash_st.py +++ b/algs4/separate_chaining_hash_st.py @@ -1,15 +1,15 @@ """ - Execution: python RedBlackBST.py < input.txt + Execution: python separate_chaining_hash_st.py < input.txt Data files: https://algs4.cs.princeton.edu/33balanced/tinyST.txt - A symbol table implemented using a left-leaning red-black BST. + A symbol table implemented using a separate chaining hash. This is the 2-3 version. % more tinyST.txt S E A R C H E X A M P L E - % python RedBlackBST.py < tinyST.txt + % python separate_chaining_hash_st.py < tinyST.txt A 8 C 4 E 12