摘要: 1 #!/user/bin/env python 2 # -*- coding:utf-8 -*- 3 """ 4 Function ; 5 Is Mutable 6 mutable : 7 list set dict 8 immutable : If you modify the value of... 阅读全文
posted @ 2019-08-06 17:32 隔壁村嘎哈 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 1 #!/user/bin/env python 2 # -*- coding:utf-8 -*- 3 4 """ 5 Container: 6 List: 7 Establish 8 Content Access 9 Built-In Function 10 Add 11 ... 阅读全文
posted @ 2019-08-06 17:28 隔壁村嘎哈 阅读(141) 评论(0) 推荐(0) 编辑
摘要: 1 #!/user/bin/env python 2 # -*- coding:utf-8 -*- 3 4 # Single-Line Comments 5 6 """ 7 multiline Comments 8 """ 9 10 """ 11 1. Variable 12 Weak Type : No clear type, the s... 阅读全文
posted @ 2019-08-06 17:27 隔壁村嘎哈 阅读(194) 评论(0) 推荐(0) 编辑
摘要: 1 #!/user/bin/env python 2 # -*- coding:utf-8 -*- 3 """ 4 string (scene): 5 section : [start:end[:step]] 6 containing "start" and does not contain "end" 7 string = "1234567... 阅读全文
posted @ 2019-08-06 17:27 隔壁村嘎哈 阅读(99) 评论(0) 推荐(0) 编辑
摘要: 1 #!/user/bin/env python 2 # -*- coding:utf-8 -*- 3 4 import sys 5 6 7 class TaskControlBlock: 8 CURRENT_TIME = 0 9 10 def __init__(self, dictionary, 阅读全文
posted @ 2018-12-28 09:58 隔壁村嘎哈 阅读(1028) 评论(0) 推荐(0) 编辑
摘要: 1 #include "stdafx.h" 2 3 /* 4 * @author Wu Jingan 5 * @created June 6, 2018 6 */ 7 8 #include <iostream> 9 #include <string> 10 #include <algorithm> 阅读全文
posted @ 2018-12-07 08:56 隔壁村嘎哈 阅读(240) 评论(0) 推荐(0) 编辑
摘要: 1. 最早截止时间优先EDF(Earliest DeadlineFirst)算法是非常著名的实时调度算法之一。在每一个新的就绪状态,调度器都是从那些已就绪但还没有完全处理完毕的任务中选择最早截止时间的任务,并将执行该任务所需的资源分配给它。在有新任务到来时,调度器必须立即计算EDF,排出新的定序,即 阅读全文
posted @ 2018-11-21 11:59 隔壁村嘎哈 阅读(2150) 评论(0) 推荐(0) 编辑