#include #include "array.h" #include "linkedlist.h" #include "stlstack.h" #include "stlvector.h" #include "maxstapel.h" int main(){ std::string invoer; std::cin >> invoer; // 20.9'23 toevoeging: // Gebruik hierboven std::getline om de string in een keer in te kunnen lezen! std::cout << "Array Stack: "; maxStapel >(invoer); std::cout << "Linked List Stack: "; maxStapel >(invoer); std::cout << "STL Vector Stack: "; maxStapel >(invoer); std::cout << "STL Stack Stack: "; maxStapel >(invoer); std::cout << "Done!" << std::endl; return 0; }//main()