03 2020 档案

摘要:#include <iostream>#include <string>using namespace std;struct Node{ Node() :value(0), pNext(nullptr) {} int value; Node* pNext;};class CLinkList{priv 阅读全文
posted @ 2020-03-21 03:04 magongbianma 阅读(155) 评论(0) 推荐(0)
摘要:#include <iostream>#include <string>using namespace std;const long MAX_LEN = 50;int main (){ int Left[MAX_LEN] = {0}; int Right[MAX_LEN] = {0}; string 阅读全文
posted @ 2020-03-09 00:03 magongbianma 阅读(356) 评论(0) 推荐(0)