Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/codemistic/Data-Structures-and-Algorithms
/ postOrder
Function
postOrder
Trees/binarytreetraversal.c:31–38 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
29
}
30
}
31
void postOrder(struct tnode *node) {
32
if (node) {
33
postOrder(node->left);
34
postOrder(node->right);
35
printf(
"%d "
, node->data);
36
}
37
return;
38
}
39
40
41
void preOrder(struct tnode *node) {
Callers
1
main
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected