hello-algo/codes/dart/utils/list_node.dart
Yudong Jin 034ee65e9a
Fix bugs and harmonize the code comments (#1199)
* Fix the comment in array_deque.go

* Fix the comment in bucket_sort.c

* Translate the Java code comments to Chinese

* Bug fixes

* 二分查找 -> 二分搜尋

* Harmonize comments in `utils` between multiple programming languages
2024-03-31 03:06:41 +08:00

24 lines
457 B
Dart

/**
* 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;
}