Aryadev Chavali 89fd812981 Make draw_node_number_line non recursive
Using a stack or queue, we can replace a function recursive tree
traversal with a single call.  A stack would make it a DFS while a
queue would be a BFS.  Since there's only ever two children, and at
high iteration counts we're getting quite large depth, it would be
best to do a DFS, hence the stack.
2024-07-26 20:53:54 +01:00
2024-07-26 02:54:02 +01:00
2024-07-26 03:15:09 +01:00
2024-07-26 02:54:02 +01:00
2024-07-26 03:17:09 +01:00
Description
No description provided
MIT 1.2 MiB
Languages
C 96.1%
C++ 3.8%
Shell 0.1%