Advertisement
Guest User

Untitled

a guest
Feb 18th, 2020
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. int main()
  2. {
  3.  
  4. srand(time(NULL));
  5.  
  6. Node* head=nullptr;
  7.  
  8. int krok = 0;
  9. while(krok!=100000)
  10. {
  11. krok+=10000;
  12. for(int i=0; i<krok; i++)
  13. {
  14. Add(head,rand()%100);
  15. }
  16. cout << krok << "; ";
  17. cout << Wysokosc(head) << endl;
  18. Usun(head);
  19. }
  20.  
  21.  
  22. return 0;
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement