摘要: 1 #include<iostream> 2 #include<vector> 3 #pragma warning(disable:4996) 4 5 using namespace std; 6 7 struct Node 8 { 9 int data; 10 int next; 11 }; 12 阅读全文
posted @ 2020-03-15 21:34 Huayra 阅读(108) 评论(0) 推荐(0) 编辑