暴力、打表(记忆已经查询过的学号对应的排名,防止反复查询同一学号) 因为题目中已经规定学号是6位数,所以用int表示方便打表。 1 #include <iostream> 2 #include <stdio.h> 3 #include <string> 4 #include <algorithm> ...
分类:
其他好文 时间:
2020-03-30 23:35:24
阅读次数:
87
Comparison sorts |Name|Best|Average|Worst|Memory|Stable| | | | | | | | |Bubble sort|$n$|$n^2$|$n^2$|$1$|Yes| |Insertion sort|$n$|$n^2$|$n^2$|$1$|Yes| ...
分类:
其他好文 时间:
2020-03-30 19:35:59
阅读次数:
72
MyBatis中常用动态SQL: choose when otherwise if trim where foreach 1,<if>元素被用来有条件地嵌入SQL片段,如果测试条件被赋值为true,则相应地SQL片段将会被添加到SQL语句中。 <select id="searchCourses" p ...
分类:
数据库 时间:
2020-03-29 15:28:05
阅读次数:
149
今天先问问题: 1. DRC有点多,想修DRC用哪个命令? 2. 手动挪了一个std cell,它的绕线断开了,想把它连好用哪个命令? 3. 只想绕一根线用哪个命令? 这些问题对ICC2老鸟来说,really easy。 但对freshman来讲,有必要做些基础知识普及,才会用的得心应手。 rout ...
分类:
其他好文 时间:
2020-03-28 13:29:25
阅读次数:
132
$$f(n)=\sum_{i=0}^{n}( 1)^i {n \choose i} g(i) \Leftrightarrow g(n)=\sum_{i=0}^{n}( 1)^i {n \choose i} f(i)$$ $$f(n)=\sum_{i=0}^{n}{n \choose i} g(i) ...
分类:
其他好文 时间:
2020-03-23 00:10:51
阅读次数:
66
微信支付和支付宝在线支付越来越重要,在各种产品中多多少少都会和支付打交道,此篇博客用采用第三方开源代码 "best pay sdk" 封装好的api作为入门代码。 导入开源jar包到SrpingBoot中: best pay sdk具体使用可参考文档: https://github.com/Pay ...
分类:
微信 时间:
2020-03-21 21:20:18
阅读次数:
121
Almost every home will have a corridor, and will also choose a suitable corridor decoration lights to arrange, which will eliminate the tension brough ...
分类:
其他好文 时间:
2020-03-20 17:22:39
阅读次数:
93
题目链接: https://leetcode-cn.com/problems/best-time-to-buy-and-sell-stock/submissions/ 思路:使用dp,保存上一步的状态,然后递推 状态转移方程:last = Math.max(0, last + prices[i+1] ...
分类:
编程语言 时间:
2020-03-20 13:02:12
阅读次数:
86
转自:https://www.cnblogs.com/clonen/p/6674922.html 顾名思义,best_field就是获取最佳匹配的field,另个可以通过tie_breaker来控制其他field的得分,boost可以设置权重(默认都为1)。 下面从宏观上来讲的简单公式: score ...
分类:
其他好文 时间:
2020-03-18 11:33:48
阅读次数:
63
Q:假设你有一个数组,其中第i个元素是某只股票在第i天的价格。 如果你最多只能完成一笔交易(即买一股和卖一股股票),设计一个算法来求最大利润。 A:当前值比最小值小,代替最小值;当前值比最小值大,计算差值,和之前的差值做判断。 Q:假设你有一个数组,其中第i个元素表示某只股票在第i天的价格。 设计一 ...
分类:
其他好文 时间:
2020-03-15 22:02:24
阅读次数:
46