From 2381e3d07f6e774d00d4673f6e0fd54dd72aa43f Mon Sep 17 00:00:00 2001 From: "Ilya Ig. Petrov" Date: Wed, 23 Dec 2015 13:13:46 +0500 Subject: [PATCH] Update README.md --- pac-performance-analyses/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pac-performance-analyses/README.md b/pac-performance-analyses/README.md index 81fe067..50ec798 100755 --- a/pac-performance-analyses/README.md +++ b/pac-performance-analyses/README.md @@ -24,5 +24,5 @@ I have tested different solutions, and depicted [results](./benchmark/Output.txt * __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__. -* __Hosts reversed binary__ – binary search on hosts, but hosts are kept in reversed form: _"gro.evichra"_ instead of _"archive.org"_. +* __Hosts reversed binary__ – binary search on hosts, but hosts are kept in reversed form: _"gro.evichra"_ instead of _"archive.org"_. It shouldn't really affect anything, but it does.