摘要: HTTP1.0、HTTP1.1 和 HTTP2.0 的区别 https://juejin.im/entry/5981c5df518825359a2b9476 https://zhuanlan.zhihu.com/p/43787334 网络协议 https://www.jianshu.com/p/6e 阅读全文
posted @ 2020-03-17 09:41 汪汪汪~~ 阅读(78) 评论(0) 推荐(0) 编辑
摘要: 0.web端和移动端需在同一个局域网下面 1.Filder-->tools-->options-->https安装证书 2.Filder-->tools-->options-->connections 配置连接 3.移动端下载证书,输入电脑端的网址和端口,下载证书 4.设置手机端网络代理,设置成电脑 阅读全文
posted @ 2019-11-20 17:37 汪汪汪~~ 阅读(186) 评论(0) 推荐(0) 编辑
摘要: 1.socket客户端调用 阅读全文
posted @ 2019-10-12 08:54 汪汪汪~~ 阅读(902) 评论(1) 推荐(0) 编辑
摘要: class Node { constructor(key) { this.key = key; this.left = null; this.right = null; } } class BstSearch { ... 阅读全文
posted @ 2019-08-08 08:52 汪汪汪~~ 阅读(220) 评论(0) 推荐(0) 编辑
摘要: class Node{ constructor(element){ this.element=element; this.pre=null; this.next=null; } } class DoubleLink{ constructor(){ this.head=null; this.tail=null; this.length=0; } Append(element) { var node= 阅读全文
posted @ 2019-08-08 08:52 汪汪汪~~ 阅读(154) 评论(0) 推荐(0) 编辑
摘要: class Node{ constructor(element){ this.element=element; this.next=null; } } class Linked{ constructor(){ this.head=null; this.length=0; } append(element){ let node=new Node(element); if(this.head==nul 阅读全文
posted @ 2019-08-08 08:51 汪汪汪~~ 阅读(256) 评论(0) 推荐(0) 编辑
摘要: //一般队列 class queue { constructor() { this.list = []; } //入队 EnQueue(item) { this.list.push(item); } //出队 Dequeue() { return this.list.shift(); } //第一个元素值 GetFront() { return this.list[0]; } //长度 GetSi 阅读全文
posted @ 2019-08-08 08:50 汪汪汪~~ 阅读(160) 评论(0) 推荐(0) 编辑
摘要: class stack{ constructor (){ this.list=[]; } //入栈 Push(item){ this.list.push(item); } //出站 Pop(){ return this.list.pop(); } //判断栈是否为空 GetIsEmpty(){ return this.list.length==0; } //栈的大小 GetSize(){ retu 阅读全文
posted @ 2019-08-08 08:49 汪汪汪~~ 阅读(245) 评论(0) 推荐(0) 编辑
摘要: 1.安装.net core ,vscode 以及相关扩展支持,具体安装工具,从官网上下载 2.VSCode里面安装C#的相关扩展 3.用vsCode打开开发文件夹 4.Ctrl+Shift+`,打开VSCode的终端 5. 用命令行创建一个控制台程序:dotnet new console --nam 阅读全文
posted @ 2019-07-06 18:43 汪汪汪~~ 阅读(1637) 评论(0) 推荐(0) 编辑
摘要: 表达式与语句 阅读全文
posted @ 2019-05-09 11:04 汪汪汪~~ 阅读(427) 评论(0) 推荐(0) 编辑