I\'m implementing LinkedList in c++.
Below is the implementation of Node and LinkedList classes.
class Node{ public: int data;