#include #include #include /* Initially list is empty */ void initializeList () { } /* Need to free memory */ void clearList () { } /* Insert an item at the end of a list */ void insertAtEnd (int data) { } /* Find "data" in the list, if it exists, and move it up by a distance of "moveDistance" closer to the front of the list. */ int findPositionAndMove (int data, int moveDistance) { }