/
githubmirror
/
hello-algo
Обзор
Документация
Войти
/
githubmirror
/
hello-algo
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
codes/cpp/utils/list_node.hpp
42 строки
795 B
Yudong Jin
Fix bugs and harmonize the code comments (#1199)
30 мар 2024, 22:06
Не верифицирован
30 мар 2024, 22:06
034ee65
Код
Авторство
О чём код?
/** * File: list_node.hpp * Created Time: 2021-12-19 * Author: krahets (krahets@163.com) */ #pragma once #include <iostream> #include <vector> using namespace std; /* 链表节点 */ struct ListNode { int val; ListNode *next; ListNode(int x) : val(x), next(nullptr) { } }; /* 将列表反序列化为链表 */ ListNode *vecToLinkedList(vector<int> list) { ListNode *dum = new ListNode(0); ListNode *head = dum; for (int val : list) { head->next = new ListNode(val); head = head->next; } return dum->next; } /* 释放分配给链表的内存空间 */ void freeMemoryLinkedList(ListNode *cur) { // 释放内存 ListNode *pre; while (cur != nullptr) { pre = cur; cur = cur->next; delete pre; } }