2020年12月2日

Math.floor, Math.round, Math.ceil的区别

摘要: Math.floor: 返回小于或等于指定数字的最大整数,即向下取整 Math.floor( 45.95); // 45 Math.floor( 45.05); // 45 Math.floor( 4 ); // 4 Math.floor(-45.05); // -46 Math.floor(-45 阅读全文

posted @ 2020-12-02 14:33 qingMing01 阅读(164) 评论(0) 推荐(0) 编辑

2020年3月5日

卡特兰数之不同的二叉搜索树

摘要: 在前面写斐波那契数列的时候,突然想起来卡特兰数列,所以特地来重温一下。 什么是卡特兰数列 首先这里给出它的递推公式 Cn = C0Cn-1 + C1Cn-2 + ... + Cn-1C0 咋一看,看不明白,没关系,咱来举几个例子: 这里我们先把第一项直接写出来 C0 = 1,那么 C1 = C0C0 阅读全文

posted @ 2020-03-05 23:20 qingMing01 阅读(890) 评论(1) 推荐(0) 编辑

2020年3月4日

[极客时间-每日一课]如何优雅地计算斐波那契数列?

摘要: 课程:https://time.geekbang.org/dailylesson/detail/100028406 问题:计算斐波那契数列的第n项的值,数列表达式:F[n]=F[n-1]+F[n-2] (n>=2,F[0]=0,F[1]=1) winter(讲师)认为这是一道很好的面试题, 1. 答 阅读全文

posted @ 2020-03-04 17:18 qingMing01 阅读(958) 评论(0) 推荐(0) 编辑

2020年2月20日

Enbale IE mode in Edge

摘要: 1. 打开Edge, 在地址栏输入 edge://flags/ 2. 搜索 Enable IE Integration , 配置为 IE mode 3. 找到Edge的启动程序路径。如 C:\Program Files (x86)\Microsoft\Edge\Application\msedge. 阅读全文

posted @ 2020-02-20 17:20 qingMing01 阅读(378) 评论(0) 推荐(0) 编辑

导航