#include using namespace std; #include "LLDeluxe.h" int main() { LLDeluxe x; x.find_insert_spot('M'); x.add_before('M'); x.find_insert_spot('S'); x.add_before('S'); x.find_insert_spot('B'); x.add_before('B'); x.find_insert_spot('Q'); x.add_before('Q'); x.find_insert_spot('K'); x.add_before('K'); x.find_insert_spot('X'); x.add_before('X'); x.display_all(); x.find_item('Q'); x.remove(); x.display_all(); return EXIT_SUCCESS; }