摘要: #include "stdio.h" struct ListNode{ int val; ListNode *next; ListNode(int x) : val(x), next(NULL) {} }; class Solution{ public: ListNode* Reverse(List 阅读全文
posted @ 2022-10-16 21:50 极客船长 阅读(67) 评论(0) 推荐(0) 编辑
摘要: 1,vscode软件下载vscode软件不大,直接上官网上下载即可。 下载链接:Download Visual Studio Code - Mac, Linux, Windows 安装过程:安装过程无脑下一步,记住它的安装路径 2. 安装cpptools工具安装中文包: 安装c语言包: 我在安装的时 阅读全文
posted @ 2022-10-16 18:28 极客船长 阅读(60) 评论(0) 推荐(0) 编辑