#include #include "Header.h" #include "Node.h" using std::cin; using std::cout; using std::endl; void Swap(Node* first, Node* second) { int test = 0; int test2 = 0; first->data = test; second->data = test2; cout << "first node swapped is (correct 16): " << second << " the second node swapped is (correct 24): " << first << endl; } void Standardize_101(Node* thirdNode) { /*int stan = 0; Node* thirdNode = stan; thirdNode->_data = stan;*/ } void Square(Node* thirdNode) { }