https://www.ardanlabs.com/blog/2018/08/scheduling-in-go-part1.html 1) Scheduling In Go : Part I - OS Scheduler2) Scheduling In Go : Part II - Go Sched ...
分类:
其他好文 时间:
2019-09-05 23:24:41
阅读次数:
89
引入import org.springframework.scheduling.annotation.Scheduled; 1.☆在启动类上加 @EnableScheduling 2.在要定期执行的方法上加 @Scheduled(参数) @Scheduled(cron="0/5 * * * * ? ...
分类:
编程语言 时间:
2019-08-31 17:09:36
阅读次数:
131
3. Longest Substring Without Repeating Characters Medium Medium Given a string, find the length of the longest substring without repeating characters. ...
分类:
其他好文 时间:
2019-08-24 20:22:40
阅读次数:
80
Given a string s that consists of only uppercase English letters, you can perform at most k operations on that string. In one operation, you can choos ...
分类:
其他好文 时间:
2019-08-21 13:39:34
阅读次数:
95
一、Quartz介绍 直接看官网吧, "Quartz官网" 什么是 Quartz Job Scheduling Library? Quartz是一个 "功能丰富的" 开源任务调度库,几乎可以集成在任何Java应用程序中 从最小的独立应用程序到最大的电子商务系统。Quartz可用于创建简单或复杂的计划 ...
分类:
其他好文 时间:
2019-08-19 00:15:52
阅读次数:
144
problem:https://leetcode.com/problems/longest-repeating-character-replacement/ 维护一个最多包含k个额外字符的滑动窗口。需要记录当前出现次数最多字符的出现次数来判断窗口是否合法,如果超过了,就把首指针向后挪一位,同时更新最 ...
分类:
其他好文 时间:
2019-08-11 23:22:33
阅读次数:
113
第一步、配置线程池packagecom.kyy.springboot.pool;importorg.springframework.context.annotation.Bean;importorg.springframework.context.annotation.Configuration;importorg.springframework.scheduling.concurrent.Thr
分类:
编程语言 时间:
2019-08-01 22:48:27
阅读次数:
239
轮询调度算法的(Round-Robin Scheduling)原理是每一次把来自用户的请求轮流分配给内部中的服务器,从1开始,直到N(内部服务器个数),然后重新开始循环。 优点:简洁,无需记录当前所有连接的状态,所以它是一种无状态调度。 缺点:由于算法不关心每台服务器的当前连接数和响应速度,当请求服 ...
分类:
其他好文 时间:
2019-07-28 10:56:49
阅读次数:
104
参考文献: [1] Cheng R , Gen M , Tsujimura Y . A tutorial survey of job-shop scheduling problems using genetic algorithms—I. representation[J]. Computers a ...
分类:
编程语言 时间:
2019-07-21 13:44:40
阅读次数:
187
"P2949 [USACO09OPEN]工作调度Work Scheduling" ~~题目标签是单调队列+dp,萌新太弱不会~~ 明显的一道贪心题,考虑排序先做截止时间早的,但我们发现后面可能会出现价值更高却没有时间做的情况 我们需要反悔的操作 于是我们想到用堆,如果当前放不下且当前价值高于已做工作 ...
分类:
其他好文 时间:
2019-07-16 22:37:40
阅读次数:
114