void createList(ListNode *head){
int i;
ListNode *phead = head;
cout << "请输入数字:" << endl;
while(cin >> i){
ListNode *node = new ListNode;
node->val = i;
node->next = NULL;
phead->next = node;
phead = node;
if (cin.get() == ‘\n‘)
break;
}
cout << "链表创建成功!" << endl;
}
核心代码:
if (cin.get() == ‘\n‘)
break;
原文:https://www.cnblogs.com/UjiMatca/p/14104926.html