Functional Quadtrees
lbjgruppen.com
Functional Quadtrees
1–10 of 52 posts
Re: Functional Quadtrees
#2And then maybe even juxtapose that with a linear search example, which also numbers every step. I bet this would make it really click for some people. And for free the user can also play with how a linear search can sometimes be faster when they just want the first element!
As a bonus: allow the user to change the cell count so they can really feel just how each method scales!
Re: Functional Quadtrees
#3https://www.lindelystables.dk/en/posts/functional-quadtree-c...
Got very confused! I challenge the HN hivemind to figure out what's going on.
Re: Functional Quadtrees
#4Re: Functional Quadtrees
#5Re: Functional Quadtrees
#6Neat! Weirdly sending this article from my phone (Pixel 8) to my browser (Arc) via Pushbullet resulted in an incredibly strange bug that it loads this site instead: https://www.lindelystables.dk/en/posts/functional-quadtree-c... Got very confused! I challenge the HN hivemind to figure out what's going on.
Well, I guess it was the first AI-first browser, hence all this bs. I uninstalled it months ago...
Re: Functional Quadtrees
#7Neat! Weirdly sending this article from my phone (Pixel 8) to my browser (Arc) via Pushbullet resulted in an incredibly strange bug that it loads this site instead: https://www.lindelystables.dk/en/posts/functional-quadtree-c... Got very confused! I challenge the HN hivemind to figure out what's going on.
Re: Functional Quadtrees
#8Aren't Quadtrees covered by almost all basic data-structure books? It is the most simple form of taking the binary tree into the next (2D) dimension.
Re: Functional Quadtrees
#9Neat! Weirdly sending this article from my phone (Pixel 8) to my browser (Arc) via Pushbullet resulted in an incredibly strange bug that it loads this site instead: https://www.lindelystables.dk/en/posts/functional-quadtree-c... Got very confused! I challenge the HN hivemind to figure out what's going on.
I remember Arc randomly rewriting my bookmarks using some kind of summarization model or something like that, it also sometimes changed the name of downloaded files reinterpreting their names. Maybe it is related somehow. Well, I guess it was the first AI-first browser, hence all this bs. I uninstalled it months ago...
Re: Functional Quadtrees
#10Most code that I saw that used quadtrees were treating things as points and storing them only at the lowest level.
I also made mine auto-divide by counting items that are entirely in a quadrant as they are added to the node, with allocate and split triggered if a count went above a certain threshold.
Anything novel or oopsie?