我只是在学习链接列表并尝试在头部插入一个节点。 这是我的代码:
Node Insert(Node head,int x) {
Node tmp = new Node();
if (head == null) {
head = tmp;
tmp.data = x;
}
tmp.data = x;
tmp = head;
tmp.next = head;
return tmp;
}
我不确定出了什么问题。我的逻辑: