https://github.com/frozen/hash_tree
https://github.com/frozen/hash_tree
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/frozen/hash_tree
- Owner: Frozen
- Created: 2020-09-17T19:44:23.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-09-17T19:44:42.000Z (almost 6 years ago)
- Last Synced: 2025-01-30T09:41:36.274Z (over 1 year ago)
- Language: Go
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
I made recursive func *FindLongestChain* that walks through tree and finds the longest path.
But in that case, i think recursion is not necessary, cause we need just to find the longest way, so i made another version *FindLongestPathWithoutRecursion*.