leo/examples/hackers-delight/ntzsearchtree
Pranav Gaddamadugu d7813923d2 More examples
2022-10-06 00:17:51 -07:00
..
inputs Reorganize hackers delight examples 2022-09-13 17:22:01 +02:00
src More examples 2022-10-06 00:17:51 -07:00
.gitignore Reorganize hackers delight examples 2022-09-13 17:22:01 +02:00
program.json Reorganize hackers delight examples 2022-09-13 17:22:01 +02:00
README.md Reorganize hackers delight examples 2022-09-13 17:22:01 +02:00

src/ntzsearchtree.leo

Build Guide

To compile and run this Leo program, run:

leo run

The Algorithm

An 8-bit version of this algorithm is described in "Hacker's Delight, 2nd edition" by Henry S. Warren, section 5-4, figure 5-22.

This algorithm contains a fully-explicated search tree to find where the lowest order 1 bit is in a 32-bit input, and returns the number of trailing zeros for each case.

In the second half of the function, the low 16 bits are zero, so the masks that select the higher bits are larger. To make the numbers more readable, we multiply the first half constants by 65536u32 which will be constant-folded during Leo compilation and should not increase the resulting circuit size.