Advertisement
Guest User

Untitled

a guest
Oct 31st, 2014
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. ( ( ( ( 1 + 4 ) * ( x 1 - 2 ) ) / x 2 ) * 2 )
  2.  
  3. ( ( ( ( 1 + 4 ) ? ? ? ( x 1 - 2 ) ) / x 2 ) ? ? ? 2 )
  4.  
  5. #include <stdio.h>
  6. #include <stdlib.h>
  7. #include <string.h>
  8.  
  9. int main(int argc, char ** argv)
  10. {
  11. Node * root;
  12. root = createNode(argv[1]);
  13. int i;
  14. for(i=0;i<strlen(root->value);++i)
  15. {
  16. printf("%c ",root->value[i]);
  17. }
  18. createTree(&root);
  19. postOrder(root);
  20. printf("n");
  21. return 0;
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement