Translate the linked list code into a class. Due Friday: Class design. Should your class contain the big 3? Why or why not? What should the constructor do? In pseudocode, provide a constructor for the class. How could we determine equality of two linked lists (== operator)? Provide pseudocode for this. We have the power to overload the [] operator just like any other operator. Write pseudocode for a method called "get" which will get the ith element of a linked list. For example get(node, 0) should get the first element in the list. get(node, size(node)-1) should get the last element in the list.