摘要:
【哲学思考】:内卷的解决方案 内卷,即无论多少付出和努力,收入却无明显增加。 当你进行巨量的付出和努力、却无法明显增加收益时,那么你就陷入了内卷。 面对内卷时,我的解决方案是换赛道或者开辟新赛道。 换赛道。换赛道,有两种类型。其一,在行业内更换细分领域;其二,换行业。我们的现实世界中,总有些行业(细 阅读全文
摘要:
[c/cpp]:数据结构:表格实现(table) 一、程序代码 1 /* 2 * table { 3 * id value 4 * record[0].id record[0].value 5 * record[1].id record[1].value 6 * record[2].id recor 阅读全文
摘要:
[c/cpp]:指针的区别:【 int *px[3] 和 int (*pa)[3] 】 一、程序代码 1 #include <iostream> 2 3 4 int msg() 5 { 6 int x[3] = {1,2,3}; 7 8 int xx[4][3] = { 9 {1,2,3}, 10 阅读全文