1.手写单例模式(饿汉式)。(不存在线程安全) 2.手撕不含有重复字符的最长子字符串。 3.了解大端字节序、小端字节序吗?为什么需要分大端字节序和小端字节序? 4.手写大小端字节序? #include <iostream> #include <cstring> using namespace std; int main() { union { short x; char c[sizeof(short)]; }test; test.x = 0x0102; // 0x0102 ...