Advertisement
Guest User

Untitled

a guest
Nov 20th, 2019
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.30 KB | None | 0 0
  1. void lista::pokaz()
  2. {
  3.     cout << "===================================" << endl;
  4.     for (int i = 0; i <= obecny_poziom - 1; i++)
  5.     {
  6.         wezel* tmp = pierwszy->next[i];
  7.         cout << "Poziom " << i << ": ";
  8.         while (tmp != NULL)
  9.         {
  10.             cout << tmp->klucz << " ";
  11.             tmp = tmp->next[i];
  12.         }
  13.         cout << endl;
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement