ARST打卡第169周[169/521]
Algorithm
lc1161_最大层内元素和
bfs队列应用
1 | // 感觉这个题目和之前的一次面试题很像,就是bfs,但是面试时紧张记录了太多上下层的状态 |
Review
【TED演讲】你的话可以预测你未来的心理健康
这个TED有点像NLP(Natural Language Processing)自然语言处理的推广片,哈哈,通过数据分析,相关性自动机,等等,来分析一个人的语言是否连贯,以及分析其中的词法相关性,从而得知其中的含义和情感,从而分析人的精神状态,心理健康
Tips
Share
再次分享Concurrence in go
初看感觉很一般,再看发现大佬用非常普通简单通俗易懂的引导方式,简练的代码,清晰的整理,讲好了go并发的知识点
比如go channel规范做的表格,推荐去读原文
channel使用权限规范
Operation | Channel State | Result |
---|---|---|
Read | nil | Block |
Open and Not Empty | Value | |
Open and Empty | Block | |
Closed | <default value> , false |
|
Write Only | Compilation Error | |
Write | nil | Block |
Open and Full | Block | |
Open and Not Full | Write Value | |
Closed | panic | |
Receive Only | Compilation Error | |
Close | nil | panic |
Open and Not Empty | Close Channel; reads succeed until channel is drained, then reads produce default value | |
Open and Empty | Close Channel; reads produce default value | |
Close | panic | |
Receive Only | Compilation Error |