Skip to content

Commit

Permalink
update doc
Browse files Browse the repository at this point in the history
  • Loading branch information
shellfly committed Mar 29, 2018
1 parent 6140220 commit cdc41d9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions algs4/linear_probing_hash_st.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 3 additions & 3 deletions algs4/separate_chaining_hash_st.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit cdc41d9

Please sign in to comment.