编写用尾插法创建链表的代码
时间: 2023-03-06 08:20:49 浏览: 89
链表尾插法
我可以给你一个示例:Node* head = NULL;
Node* tail = NULL; for(int i=0;i<n;i++){
Node* temp = (Node*)malloc(sizeof(Node));
temp->data = arr[i];
temp->next = NULL;
if(head == NULL){
head = temp;
tail = temp;
}
else{
tail->next = temp;
tail = tail->next;
}
}
阅读全文