1234567891011121314151617181920212223242526272829303132333435363738 |
- #include <iostream>
- #include "Llist.h"
- using namespace std;
- int main() {
- Llist L;
- L.insertAfter(NULL, 9);
- L.insertAfter(NULL, 5);
- // L.append(9);
- L.append(42);
- L.prepend(3);
- L.prepend(1);
-
- L.insertAfter(L.search(9),55);
- L.insertAfter(L.search(55),85);
- L.insertAfter(L.search(3),3);
- L.insertAfter(L.search(3),7);
- cout << L << endl;
- // L.printRev();
- L.removeAfter(L.search(9));
- cout << L << endl;
-
- Llist M(L);
- // Llist M;
- // M = L;
-
- cout << M << endl;
- M.append(19);
- M.prepend(119);
- M.insertAfter(M.search(3),59);
- cout << M << endl;
- cout << L << endl;
-
- while (L.getLength() > 0) {
- L.removeAfter(NULL);
- cout << L << endl;
- }
-
- }
|