Skip to content

Instantly share code, notes, and snippets.

@santarinto
Created February 2, 2020 23:50
Show Gist options
  • Save santarinto/c5f76ed6687df812d25b22676e2969d1 to your computer and use it in GitHub Desktop.
Save santarinto/c5f76ed6687df812d25b22676e2969d1 to your computer and use it in GitHub Desktop.
struct uzel {
uzel* child1;
uzel* child2;
uzel* parent;
}
function procesedTree(uzel* node) {
if (node->child1 != NULL) processedTree(node->child1);
if (node->child2 != NULL) processedTree(node->child2);
/* code for work with node */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment