摘要:
转载https://www.cnblogs.com/nyist-xsk/p/7742151.html在windows上压缩的文件,是以系统默认编码中文来压缩文件。由于zip文件中没有声明其编码,所以linux上的unzip一般以默认编码解压,中文文件名会出现乱码。 虽... 阅读全文
摘要:
#include #include #include using namespace std;struct StackNode{public: char data; struct StackNode *link; StackNode(char d='... 阅读全文
摘要:
#include #include using namespace std;struct StackNode{public: int data; struct StackNode *link; StackNode(int d=0,StackNode ... 阅读全文