From 095b5b436b343bcbfc5b0b4a7a0ce52c5b9c6eec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1rcio=20Vicente?= Date: Fri, 14 Jul 2017 11:12:04 -0300 Subject: [PATCH] Update README.md --- README.md | 29 ++++++++++++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f872c8f..0c71a0b 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,29 @@ -Lisch and Eisch algorithms written in Python +Lisch and Eisch algorithms =========== + +These hashing algorithms are used is some applications to avoid colisions handling files. +**LISCH** means *Last Insertion Standart Coalesced Hashing* and **EISCH** *Early Insertion Standart Coalesced Hashing* + + +Running +--- +To run this code just follow steps below + +```bash +$ python main.py +``` +Then you need to choose an alternative `l` for LISCH implementation or `e` EISCH. So insert the values and type `e` to exit the program. + +**Example** +```bash +$ python main.py +l +1 +10 +9 +18 +35 +e +``` + +This program outputs a binary file `lisch.dat` or `eisch.dat`