c++找错!!~~
template <typename T>void insertValue(node<T> *front,node<T> *target,int n){ if(n=0) { target->next=front;first=target;} for(int i=1;i<n;i++){ front=front->next; } target->next=front->next; front->next=target;}