随笔分类 -  数据结构

摘要:struct Node { int val; Node *next; Node(int x): val(x), next(nullptr){}; }; class MyLinkedList { public: /** Initialize your data structure here. */ i 阅读全文
posted @ 2020-03-10 18:33 jenningszheng 阅读(156) 评论(0) 推荐(0)