<script type="text/javascript"> function* myGenerator(){ console.log('业务逻辑A') let result=yield 'hello' console.log(result) console.log('业务逻辑B') yield ...
分类:
其他好文 时间:
2020-07-26 15:13:08
阅读次数:
51
""" 初始化链表 """ import time class Node: def __init__(self,value): self.value = value self.next = None class SingleLinkList: def __init__(self): self.hea ...
分类:
编程语言 时间:
2020-07-26 02:07:53
阅读次数:
141
考察链表的操作,找到单向链表中环的入口节点 C++版 #include <iostream> #include <algorithm> using namespace std; // 定义链表 struct ListNode{ int val; struct ListNode* next; List ...
分类:
其他好文 时间:
2020-07-26 00:49:30
阅读次数:
60
这里记录一下使用QuartusII软件编程FPGA的流程 1.首先在我们本地创建一个这样的文件夹用来存放工程 par:存放Quartusll工程文件 rtl:存放代码 sim:存放仿真文件 2.打开QuartusII,点File->New Project Wizard.. 3.next 4.第一栏用 ...
分类:
其他好文 时间:
2020-07-26 00:21:44
阅读次数:
72
单链表 # 实现单链表 class Node(object): '''定义一个节点''' def __init__(self,data): # 因为每次都需要生成一个节点,写到类里面便于保存 self.data = data # 保存节点的值 self.next = None # 默认将节点的指向为 ...
分类:
其他好文 时间:
2020-07-26 00:06:05
阅读次数:
67
引言 HTTP是一个属于应用层的面向对象的协议,由于其简捷、快速的方式,适用于分布式超媒体信息系统。它于1990年提出,经过几年的使用与发展,得到不断地完善和扩展。目前在WWW中使用的是HTTP/1.0的第六版,HTTP/1.1的规范化工作正在进行之中,而且HTTP-NG(Next Generati ...
分类:
Web程序 时间:
2020-07-24 21:34:26
阅读次数:
94
Eclipse导入SVN项目的三种方式 Eclipse导入SVN项目的三种方式 一.直接Import导入: 1.点击 File --> Import,进入导入项目窗口 2.选择从SVN检出项目,点击Next 3.选择创建新的资源库位置,点击Next 4.在URL处输入SVN项目远程地址,点击Next ...
分类:
系统相关 时间:
2020-07-24 21:14:17
阅读次数:
84
1.Scanner 1 Scanner sc = new Scanner(System.in); 2 String s1 = sc.next(); 3 String s2 = sc.nextLine(); 4 int a = sc.nextInt(); 2.BufferedReader 1 Buff ...
分类:
其他好文 时间:
2020-07-24 16:31:42
阅读次数:
80
1. compose compose(middlewares) // middleware应该是回调, 所有用async-await. middlewares = [async (ctx, next)=>{ log1, await next(), log2 }, async (ctx, next) ...
分类:
Web程序 时间:
2020-07-24 09:52:03
阅读次数:
82
题目来源: http://codeforces.com/problemset/problem/158/A "Contestant who earns a score equal to or greater than the k-th place finisher's score will advan ...
分类:
其他好文 时间:
2020-07-23 23:12:25
阅读次数:
89