Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
computers:arduino:avl_tree [23-May-2019 11:49] – Steve Joynt | computers:arduino:avl_tree [02-Feb-2025 16:14] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== AVL Tree ====== | ====== AVL Tree ====== | ||
+ | |||
+ | This is currently a work in progress. Some source has been released, but it still needs some work. See the end of the page for details. | ||
As always on the Arduino platform, the library would need to use as little memory and program space as possible. The SD card memory is a solid state device, so accessing a file in random order does not add a significant amount of time to the process, although the link between the SD card and the Arduino is relatively slow, and there is no caching on the Arduino side to speed things up. | As always on the Arduino platform, the library would need to use as little memory and program space as possible. The SD card memory is a solid state device, so accessing a file in random order does not add a significant amount of time to the process, although the link between the SD card and the Arduino is relatively slow, and there is no caching on the Arduino side to speed things up. | ||
- | What we then need is a quick algorithm for finding one item in a large list. | + | What we need is a quick algorithm for finding one item in a large list. |
+ | |||
+ | Choose a number between 1 and 1000. What if I bet you $1000 that I can discover your number by asking you no more than ten questions? Obviously my first question would be "what is your number?" | ||
- | Choose | + | It's difficult to find a needle in a haystack, but if the haystack |
So, the goal is to create an index structure that will allow us to use a [[https:// | So, the goal is to create an index structure that will allow us to use a [[https:// | ||
Line 13: | Line 17: | ||
Wikipedia has a nice description of [[https:// | Wikipedia has a nice description of [[https:// | ||
+ | The first version of the library is now {{: |