The "linked list" has a integer "position". In an array, the position is very easy to implement as it is related to the "index" of the array. In the "linked list", the position is much more difficult. Suppose yu had a "head" of type "node" and an integer named position. Write the code to implement the method below to move to a specific position in the list.
// asume head is a class instance variable
public void setPosition(int position)
{
int setPosition = 0;
// your code here....
}