摘要:
【数学】数学的全流程之数学理论、数学建模、求解模型(数值分析/数值计算) 数学的全流程:数学理论,数学建模,求解模型(数值分析/数值计算)。 数学理论:学习数学理论。数学基础理论:(分析方向:代数学和几何学之间的关联方法/转换方法)数学分析,复分析,实分析,泛函分析等。(代数方向)线性代数、高等代数 阅读全文
摘要:
【asm/c/cpp】:时间单位换算(秒) 一、秒的单位: 1、 second(秒:s) 2、 microsecond(微秒:ms): 1 second = 1000 microseconds (1s = 103 ms) 3、 millisecond(毫秒:μs): 1 second = 10000 阅读全文
摘要:
【学习方法】神级学习技能 神级学习技能总结:睡好觉,预习,复述(讲述式口述/笔述),实战,自问自答(问答式口述/笔述),归纳总结。 神级学习技能: (一) 睡好觉(睡眠就是生产力,最少睡7小时); (二) 预习(主动学习/精力注意力分配:找到自己预习时不会的地方,这是确定听课重点); (三) 复述/ 阅读全文
摘要:
【算法】平衡二叉搜索树之旋转(百度AI) 一、 平衡二叉搜索树的旋转 二、参考资料 1、 百度AI - https://www.baidu.com/s?word=平衡搜索旋转的原理&rsv_dl=DQA_PC_COPY 阅读全文
摘要:
【神级认知】:搞钱是红尘最顶级的修炼(音频转文字) 原文地址: -- https://www.bilibili.com/video/BV18LtoeTEwi/ -- https://www.douyin.com/video/7379904782590332160 -- https://www.xim 阅读全文
摘要:
[algorithms] 暴力算法(字符串匹配) 一、代码 1 #include <cstdio> 2 #include <cstdlib> 3 #include <cstring> 4 5 6 int match1(char *source, char *pattern) 7 { 8 int de 阅读全文
摘要:
[c/cpp]: user stack - test 1. code 1 #include <cstdio> 2 3 4 #define STACKSIZE 100 5 6 7 struct stack { 8 int index; 9 int e[STACKSIZE]; 10 }; 11 12 1 阅读全文
摘要:
[asm] as - linux64 1 code 1 [root@rocky:src]# cat hello64.as 2 # filename = hello64.as 3 4 5 .data 6 msg : .string "Hello, World!\n" 7 len = . - msg 8 阅读全文
摘要:
[asm/c/cpp]: function syscall() 1. syscall() - docs [root@rocky:src]# cat syscall.txt syscall(2) System Calls Manual syscall(2) NAME syscall - indirec 阅读全文
摘要:
【哲学思考】:内卷的解决方案 内卷,即无论多少付出和努力,收入却无明显增加。 当你进行巨量的付出和努力、却无法明显增加收益时,那么你就陷入了内卷。 面对内卷时,我的解决方案是换赛道或者开辟新赛道。 换赛道。换赛道,有两种类型。其一,在行业内更换细分领域;其二,换行业。我们的现实世界中,总有些行业(细 阅读全文