Skip to content

Instantly share code, notes, and snippets.

View umid-podo's full-sized avatar

umid.podo umid-podo

  • kakao Entertainment
  • Republic of Korea
View GitHub Profile
@umid-podo
umid-podo / README.md
Created July 1, 2020 07:35 — forked from tmilos/README.md
Modified Preorder Tree Traversal

Modified Preorder Tree Traversal

Hierarchical data metrics that allows fast read operations on tree like structures.

Based on Left and Right fields that are set during tree traversal. When entered into node value is set to it's Left, when exiting node value is set to it's Right.

Sample implementation