当cur游标和head 指向同一个node结点时 如果cur想游 应该使用cur.next = node ; cur = cur.next 而不是 cur = node 这样会导致 cur 和head断开联系,cur不再是head的游标了