摘要: 转载https://www.cnblogs.com/nyist-xsk/p/7742151.html在windows上压缩的文件,是以系统默认编码中文来压缩文件。由于zip文件中没有声明其编码,所以linux上的unzip一般以默认编码解压,中文文件名会出现乱码。 虽... 阅读全文
posted @ 2019-03-17 20:25 UnderScrutiny 阅读(773) 评论(0) 推荐(0) 编辑
摘要: #include #include #include using namespace std;struct StackNode{public: char data; struct StackNode *link; StackNode(char d='... 阅读全文
posted @ 2019-03-17 10:58 UnderScrutiny 阅读(272) 评论(0) 推荐(0) 编辑
摘要: #include #include using namespace std;struct StackNode{public: int data; struct StackNode *link; StackNode(int d=0,StackNode ... 阅读全文
posted @ 2019-03-17 09:44 UnderScrutiny 阅读(189) 评论(0) 推荐(0) 编辑