This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <iostream> | |
| // Only way I could use string as an arbitrary data type. | |
| #include <string> | |
| using namespace std; | |
| // Class made to be passed into my linked lists. | |
| // Uses an OPERATOR! Which was recommended by ChatGPT. | |
| // I read more on the topic in order to build it myself - but without the recommendation | |
| // I couldn't figure out how to place a class into my linked list. This default class is GPT based. |