点对点协议PPP
早期通信线路质量较差,在数据链路层使用可靠传输协议曾经是种好方法,于是早期主要流行的是能实现可靠传输的高级数据链路控制HDLC(High-level Data Link Control),但随着通信线路质量的提升,…
《Programming Abstractions in C》学习第70天,p254-p257总结,总计4页。
一、技术总结
1.minimax strategy(极小化极大算法)
p255, This idea–finding the position that leaves your opponent with the worst possible best move–is called the mi…
SICP 1.1节的标题是《The Elements of Programming》,分为如下几个小节,重点在于加粗的内容。
ExpressionsNaming and the EnvironmentEvaluating CombinationsCompound ProceduresThe Substitution Model for Procedure ApplicationConditional Expres…
1.GBDTLR
14年Facebook发表了广告推荐系统论文Practical Lessons from Predicting Clicks on Ads at Facebook ,提出了经典的GBDTLR模型。
系统输入:用户(User)、广告(Ad)、上下文(Context&am…
读书记录(缓慢更新)
目录
Part 1. The Fundamentals of Machine Learning
The Content of The Machine Learning Landscape
The Machine Learning Landscape Part 1. The Fundamentals of Machine Learning
The Content of The Machine Learning Landscape
Part 1. The F…
对SICP - 《Structure and Interpretation of Computer Programs》早有耳闻,但是总认为此书老旧,没有学习的价值,现在回想起来自己很是幼稚。每个人在知识面前应该保持足够的谦卑,此书评价这么高说明其中的内容定有学习的价值。回…
企业数据来源于多个不同的业务系统,数据流转、处理环节多,用“Garbage in Garbage out(垃圾进,垃圾出)”原则保证数据质量已成为数字化转型企业的共识。企业数据质量管理是一个系统性的工程,华为数据质量从…
第三章:JavaScript基本概念
操作符
一元操作符:
递增和递减操作符( –) 注意:执行前置递增和递减操作时,变量的值都是在语句被求值以前改变的。 例如:
var age 29;
var anotherAge --ag…
流程语句:
列举了一些不常用的流程语句:
1、do-while语句:
在对条件表达式求值之前,循环体内的代码至少会被执行一次:
var i 0;
do {
i 2;
} while (i < 10);
alert(i); >弹出10
2、for-in语句࿱…