执行计划任务 首先定义要执行的类 @scheulde加在方法上,代表此方法是计划任务 加在类上,代表所有的方法都是计划任务 之后在启动类上加 上@enableschuduling ...
分类:
编程语言 时间:
2018-12-20 23:20:21
阅读次数:
252
Given a string, find the first non-repeating character in it and return it's index. If it doesn't exist, return -1. Examples: Note: You may assume the ...
分类:
其他好文 时间:
2018-12-09 16:45:36
阅读次数:
158
Unified BeginFrame scheduling for Chrome http://goo.gl/D1Qxrr Status: http://crbug.com/401331 and http://crbug.com/416760 Original Author: simonhong@c ...
分类:
其他好文 时间:
2018-12-05 21:53:57
阅读次数:
214
Given a string, find the first non repeating character in it and return it’s index. If it doesn’t exist, return 1. Examples: Note: You may assume the ...
分类:
其他好文 时间:
2018-12-03 23:01:53
阅读次数:
165
题意:求一个字符串的最长不含重复字符的子字符串长度; 示例: input:pwwkw output:2 intput:dvdf output:3 分析:还是那句话,每分析一个问题的时候都要问自己,自己的大脑是如何找出正确答案的,将自己的分析转化为代码此题便解 题目要求不含重复字符,且是子字符串; 1 ...
分类:
其他好文 时间:
2018-11-28 00:29:14
阅读次数:
190
题意:给你两个数a和b,计算a/b的结果,结果参照题意 首先必然会出现循环,因为对b取余的结果最有b种,当我们计算的次数增多后必然出现余数想等的情况,此时就出现了循环 知道这一点后就可以开始编程了,写一个模拟除法的程序,另外仔细读题,要按照它的要求输出 ...
分类:
其他好文 时间:
2018-11-22 14:28:19
阅读次数:
139
Basic Concepts Scheduling Criteria(调度标准) CPU利用率(CPU utilization) --keep the CPU as busy as possible 吞吐率(Theoughput) --of the process that complete the ...
分类:
其他好文 时间:
2018-11-15 13:38:09
阅读次数:
123
Sliding window Hashset Loop through every element inside the string. If the current char is not inside the hashset, push the char into the hashset and ...
分类:
其他好文 时间:
2018-11-10 15:04:19
阅读次数:
189
题目传送门 传送门 题目大意 给定一个树,其中有一些边已经定向,要求为剩下的边定向使得最长路最短。 题目传送门 传送门 题目大意 给定一个树,其中有一些边已经定向,要求为剩下的边定向使得最长路最短。 定理 答案不会超过定向前由已经定向的边组成的最长路的长度加1。 定理 答案不会超过定向前由已经定向的 ...
分类:
其他好文 时间:
2018-11-06 21:24:01
阅读次数:
184