摘要:
std::cout << std::endl; 等价于 std::cout << '\n' << std::flush; 除了写入换行符,std::endl 还会刷新缓冲区。除非程序对于性能十分敏感,不然使用 \n 或者 std::end 差别不大。 参考资料 What’s the differen 阅读全文
摘要:
本书向读者提供了一套完整的,经过实践检验的英语学习体系,使得学生能够发挥自己的最大潜能。 听力 口语 阅读 写作 学习语言不在于掌握一套规则和积累大量词汇。 而在于如何运用所学的知识。 学习单词,必须要知晓上下文,否则就是在浪费时间。 结构项 (如,I, you, he 等),它们的作用可以被准确的 阅读全文
摘要:
学习方法 The way to learn a new programming language is to write programs. 学习一门新编程语言的方式是编写程序。 函数(Function) 函数的四部分: 返回类型; 函数名; 参数列表; 函数体。 main 函数返回值(Return 阅读全文
摘要:
机器效率和编程效率 Its focus, and that of its programming community, has widened from looking mostly at machine efficiency to devoting more attention to program 阅读全文
摘要:
题目链接:https://www.luogu.com.cn/problem/P1980 术语 以下的英文术语均可以翻译为数字。 digit: 一个数字字符,十进制就是 0-9 之间的一个字符; numeral: 用来表示数字的符号化表示,如 “Three”、“3”、“III”; number: 一种 阅读全文
摘要:
General Concept(一般概念) If you master the general concept of regular expressions, it's a short step to mastering a particular implementation. 如果你掌握了一般性的 阅读全文
摘要:
题目链接:https://www.luogu.com.cn/problem/P1014 有理数可枚举 In 1873 Cantor proved the rational numbers countable, i.e. they may be placed in one-one correspond 阅读全文
摘要:
编译器安装 编译器可以选择 Clang 或者 GCC,在 MacOS 上 Clang 的安装更为简单一些。 Clang(推荐) 打开终端输入命令, clang -v 查看是否已经安装。 如果已经安装,会输出类似于如下的信息: Apple clang version 14.0.0 (clang-140 阅读全文
摘要:
.gitignore 文件的作用 A gitignore file specifies intentionally untracked files that Git should ignore. Files already tracked by Git are not affected; see t 阅读全文
摘要:
题目链接: https://www.luogu.com.cn/problem/P1008 置顶题解 暴力,加简化的判断,数学原理,2个集合内所有数相加相乘结果一样,2个集合的内容一样(没错我自己编得,灵感并不是我自己的,感谢帮我的大大) 置顶的题解中的数学原理应该是存在问题。我尝试证明的整体思路是不 阅读全文