摘要: 1 #include <iostream> 2 using namespace std; 3 struct Listnode//定义链表节点 4 { 5 int val; 6 Listnode* next; 7 Listnode(int _val):val(_val),next(nullptr){} 阅读全文
posted @ 2022-01-07 22:31 菠萝超级酸 阅读(37) 评论(0) 推荐(0) 编辑