摘要:
179. Largest Number 要比较拼接以后谁应该放在前面,先试着把他们拼起来就行了 然后因为正着拼和反着拼,长度一致,所以自带的string比较函数会严格比较他们的大小关系,不会因为字符串长度而误判 bool cmp(const int &a, const int &b); class 阅读全文
摘要:
计算机存储浮点数 存储方式 A computer stores floating-point numbers using a standardized format called IEEE 754. This format is designed to represent real numbers 阅读全文