摘要: 1 #include <iostream> 2 #include <vector> 3 4 using namespace std; 5 6 int main() 7 { 8 vector<string> aa; 9 aa.push_back("A"); 10 aa.push_back("B"); 阅读全文
posted @ 2022-05-09 16:03 小小林林 阅读(28) 评论(0) 推荐(0) 编辑
摘要: 转自:编程最顶的八句格言! - 知乎 (zhihu.com) 格言一:“All problems in computer science can be solved by another level of indirection” 解读:“计算机科学中的所有问题都可以通过增加一个间接层来解决”,出自 阅读全文
posted @ 2022-05-09 11:35 小小林林 阅读(328) 评论(0) 推荐(0) 编辑
摘要: “计算机科学领域的任何问题都可以通过增加一个间接的中间层来解决” “Any problem in computer science can be solved by anther layer of indirection.” ——David Wheeler(剑桥大学计算机科学教授) 1 #inclu 阅读全文
posted @ 2022-05-09 11:31 小小林林 阅读(73) 评论(0) 推荐(0) 编辑