Revision history of "Tree Traversal"

Jump to navigation Jump to search

Diff selection: Mark the radio boxes of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

  • (cur | prev) 00:12, 8 March 2019Tata (talk | contribs). . (2,578 bytes) +2,578. . (Created page with "<pre> #include<stdio.h> #include<stdlib.h> struct node{ char val; node *l,*r; }; void pre(node *root){ printf("%c",root->val); if(root->l!=NULL) pre(root->l);...")