关于内存泄露的问题(询问老师后得到解答)
题目
语言标准
C++14
我的代码
#include <iostream>
#include <vector>
using namespace std;
struct ListNode {
int val;
ListNode *next;
ListNode(int x) : val(x), next(NULL) {}
};
ListNode * createList(vector<int> v){
ListNode fore_hea
原创
2020-07-03 00:06:39 ·
161 阅读 ·
0 评论