From 93a6119f081aa6e95a3f22466966cdc8820e37f9 Mon Sep 17 00:00:00 2001 From: Dmitry Alimov Date: Thu, 25 Jan 2018 20:54:41 +0300 Subject: Fix 3rd level node's binary representation in HAMT algorithm description (#5319) --- Python/hamt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/hamt.c b/Python/hamt.c index 81629e9..df3b109 100644 --- a/Python/hamt.c +++ b/Python/hamt.c @@ -56,7 +56,7 @@ tree structure: +---+ -- +----+----+----+ -- +----+ | +---+ -- +----+----+----+ -- +----+ - a 3rd level node | 0 | .. | 04 | 05 | 06 | .. | 31 | 0b01011 = 5 (3) + a 3rd level node | 0 | .. | 04 | 05 | 06 | .. | 31 | 0b00101 = 5 (3) +---+ -- +----+----+----+ -- +----+ | +---+ -- +----+----+----+----+ -- cgit v0.12