原子操作类: public abstract class CounterBase { public abstract void Increase(); public abstract void Decrease(); } public class CounterNoInterlocked : Cou ...
分类:
编程语言 时间:
2020-05-30 15:33:34
阅读次数:
58
四、子序列 ? 1.最长子序列 ? 给定一个字符串‘s’和一个整数k,找到其他字符串‘t’,使得‘t’是给定字 符串‘s’的最大子序列,同时‘t’的每个字符在字符串s中必须至少出现k次。 ? Input: s = "baaabaacba“, k = 3 ? Output : baaabaaba im ...
分类:
其他好文 时间:
2020-05-30 12:48:11
阅读次数:
72
1.新建两个文件 interface ICounter { int Get(); } public class Counter : ICounter { int i ; public int Get() { return i++; } } 2.启动时注册 //单例模式 services.AddSin ...
分类:
其他好文 时间:
2020-05-30 12:31:51
阅读次数:
61
count distinct vs. count group by 很多情景下,尤其对于文本类型的字段,直接使用count distinct的查询效率是非常低的,而先做group by更count往往能提升查询效率。但实验表明,对于不同的字段,count distinct与count group b ...
分类:
数据库 时间:
2020-05-30 10:30:21
阅读次数:
102
安装 yum install -y iperf # centos apt-get install iperf # ubuntu 基本用法 # 服务端 iperf -s # 客户端 5s iperf -c ip -t 5 如果想要测试多个网卡跑满,需要开启多个 iperf client 端 数据流方向 ...
分类:
其他好文 时间:
2020-05-30 01:24:07
阅读次数:
336
1049 Counting Ones (30分) The task is simple: given any positive integer N, you are supposed to count the total number of 1's in the decimal form of th ...
分类:
其他好文 时间:
2020-05-29 23:43:50
阅读次数:
106
Win7下C盘无法创建文件解决办法: To fix it, just turn off the User Account Control (UAC). In Windows 8, do not turn off the UAC via control panel, it must go throug ...
Django组件之分页器 分页器的使用 book_list=Book.objects.all() paginator = Paginator(book_list, 10) print("count:",paginator.count) #数据总数 print("num_pages",paginato ...
分类:
其他好文 时间:
2020-05-29 23:11:52
阅读次数:
72
题目描述 给定一棵二叉搜索树,请找出其中的第k小的结点。例如, (5,3,7,2,4,6,8) 中,按结点数值大小顺序第三小结点的值为4。 思路:中序遍历第k个节点 TreeNode* KthNode(TreeNode* pRoot, int k) { //中序遍历 int count=0; Tre ...
分类:
其他好文 时间:
2020-05-29 17:42:34
阅读次数:
52
递增ID归零 truncate table 你的表名 更新某表某列字段 update 表 set 字段名=新值 检测大于1的重复数据 select 字段 from 表 group by 字段 having count(*) >1; 查询索引: SHOW INDEX FROM 数据表; 建立索引: A ...
分类:
数据库 时间:
2020-05-29 13:53:36
阅读次数:
78