Assign left/right tag to nodes in the binary-tree -


i have binary (undirected) tree. want assign each (child) node left/right tag.

how can it? thanks

you in c making tree structure

struct tree {      char tag[4];     struct tree * left;     struct tree *right; };                                    

Comments

Popular posts from this blog

java - SNMP4J General Variable Binding Error -

sql server - python to mssql encoding problem -

windows - Python Service Installation - "Could not find PythonClass entry" -