mihainan

Untitled

Apr 15th, 2014
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.32 KB | None | 0 0
  1. expect_int("is_search_tree on tree1", 1, is_search_tree(tree1));
  2.    
  3.  
  4.     // Inserare elemente
  5.     tree3=insert_rand(NULL, 3);
  6.     tree3=insert_rand(tree3, 78);
  7.     tree3=insert_rand(tree3, 96);
  8.     tree3=insert_rand(tree3, 5412);
  9.     tree3=insert_rand(tree3, 458);
  10.     expect_int("is_search_tree on tree3", 0, is_search_tree(tree3));
Advertisement
Add Comment
Please, Sign In to add comment