/
githubmirror
/
hello-algo
Обзор
Документация
Войти
/
githubmirror
/
hello-algo
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
codes/dart/utils/list_node.dart
24 строки
457 B
Yudong Jin
Fix bugs and harmonize the code comments (#1199)
30 мар 2024, 22:06
Не верифицирован
30 мар 2024, 22:06
034ee65
Код
Авторство
О чём код?
/** * 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; }