输入链表数据(以数字-1作为输入结束的标志),例如建立链表1 2 3 则需输入1 2 3 -1;
时间: 2023-04-10 20:03:41 浏览: 84
好的,我可以回答这个问题。以下是输入链表数据的代码示例:
```python
class ListNode:
def __init__(self, val=0, next=None):
self.val = val
self.next = next
def createLinkedList():
head = ListNode()
cur = head
while True:
val = int(input())
if val == -1:
break
node = ListNode(val)
cur.next = node
cur = cur.next
return head.next
```
你可以使用这个函数来创建一个链表,例如输入1 2 3 -1,将返回一个包含1、2、3三个节点的链表。
相关问题
c 语言输入链表数据(以数字-1作为输入结束的标志),例如建立链表1 2 3 则需输入1 2 3 -1;
可以使用如下代码实现:
```c
#include <stdio.h>
#include <stdlib.h>
struct ListNode {
int val;
struct ListNode *next;
};
struct ListNode* createList() {
struct ListNode *head = NULL, *tail = NULL;
int num;
while (scanf("%d", &num) == 1 && num != -1) {
struct ListNode *node = (struct ListNode*)malloc(sizeof(struct ListNode));
node->val = num;
node->next = NULL;
if (head == NULL) {
head = tail = node;
} else {
tail->next = node;
tail = node;
}
}
return head;
}
int main() {
struct ListNode *head = createList();
// do something with the linked list
return 0;
}
```
阅读全文