From 8031700e0f3d49702b10dc7477bf2078f87b50f7 Mon Sep 17 00:00:00 2001 From: "Ilya Ig. Petrov" Date: Mon, 21 Dec 2015 01:32:10 +0500 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3e49747..f4bc0a4 100755 --- a/README.md +++ b/README.md @@ -34,8 +34,8 @@ I have tested different solutions, and depicted [results](./benchmark/Output.txt ![Host Lookup Chart: Time-Memory, Hits-Misses](./chart/host-lookup-chart.png) -* __IPs indexOf__ – Blocked IP is search by `indexOf` -* __IPs binary__ – Blocked IP is search by binary search. For some reason miss time slightly increased. +* __IPs indexOf__ – Blocked IP is searched by `indexOf` +* __IPs binary__ – Blocked IP is searched by binary search. For some reason miss time slightly increased. * __IPs switch__ – Simply `switch(Blocked_IP) { case1: ... caseN: return true }`. Works even better than binary search. Magic. * __Hosts switch__ – Radix trie built on `switch`. Comparable to __IPs switch__.