From cdc41d975d3f469af214dc3a10c19ad1189f05c0 Mon Sep 17 00:00:00 2001 From: shellfly Date: Thu, 29 Mar 2018 10:13:01 +0800 Subject: [PATCH] update doc --- algs4/linear_probing_hash_st.py | 6 +++--- algs4/separate_chaining_hash_st.py | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) 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