You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
457 B
25 lines
457 B
/**
|
|
* File: list_node.dart
|
|
* Created Time: 2023-01-23
|
|
* Author: Jefferson (JeffersonHuang77@gmail.com)
|
|
*/
|
|
|
|
/* 链表节点 */
|
|
class ListNode {
|
|
int val;
|
|
ListNode? next;
|
|
|
|
ListNode(this.val, [this.next]);
|
|
}
|
|
|
|
/* 将列表反序列化为链表 */
|
|
ListNode? listToLinkedList(List<int> list) {
|
|
ListNode dum = ListNode(0);
|
|
ListNode? head = dum;
|
|
for (int val in list) {
|
|
head?.next = ListNode(val);
|
|
head = head?.next;
|
|
}
|
|
return dum.next;
|
|
}
|