上一页 1 2 3 4 5 6 7 8 9 ··· 12 下一页
摘要: 阅读全文
posted @ 2021-01-05 23:10 hulian425 阅读(77) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-01-05 20:28 hulian425 阅读(65) 评论(0) 推荐(0) 编辑
摘要: 创建项目 $ django-admin startproject mysit 简易服务器 $ python manage.py runserver浏览器访问 http://127.0.0.1:8000/ 创建投票应用 $ python manage.py startapp polls 编写第一个视图 阅读全文
posted @ 2020-12-28 01:23 hulian425 阅读(33) 评论(0) 推荐(0) 编辑
摘要: 分组(packet) 当一台端系统向另一台端系统发送数据时,发送端系统将数据分段,并为每段加上首部字节。由此形成的信息包用计算机网络的术语来说成为分组。 网络协议 定义了在两个或多个通信实体之间交换的报文的格式和顺序,以及报文发送和/或接收一条报文或其他事件所采取的动作。 阅读全文
posted @ 2020-12-07 21:13 hulian425 阅读(90) 评论(0) 推荐(0) 编辑
摘要: org 0x8400 jmp start start: ;STI可屏蔽终端置1,可以有中断,CLI置0,中断就不能运行了 sti ;指向文本模式的显示缓冲区 bx bp si di 放偏移地址 段基址:cs ds es ss mov ax, 0xb800 ;指向文本缓冲区 mov es, ax mo 阅读全文
posted @ 2020-12-07 20:02 hulian425 阅读(80) 评论(0) 推荐(0) 编辑
摘要: ES6标准新增了一种新的函数:Arrow Function(箭头函数)。 为什么叫Arrow Function?因为它的定义用的就是一个箭头: x => x * x 上面的箭头函数相当于: function (x) { return x * x; } 阅读全文
posted @ 2020-12-06 13:37 hulian425 阅读(63) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> #include<cstdio> #include<map> #include<set> #include<string> #include<algorithm> #include<vector> using namespace std; vector<stri 阅读全文
posted @ 2020-12-04 20:16 hulian425 阅读(65) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> #include<cstdio> #include<map> #include<set> #include<algorithm> #include<vector> using namespace std; int cnt; map<string,int> ma1 阅读全文
posted @ 2020-12-04 14:48 hulian425 阅读(39) 评论(0) 推荐(0) 编辑
摘要: 1. 并查集找父亲用find()函数,不能直接访问fa[]数组 2.关系数量不代表节点数量,这个要注意 阅读全文
posted @ 2020-12-04 14:46 hulian425 阅读(52) 评论(0) 推荐(0) 编辑
摘要: 1.打开Dev-C++,在菜单栏上选择【工具[T]】-【编译选项[C]】 2.在打开的窗口中,将【编译时加入一下命令】选中√,并加入以下语句 -std=c++11 1 3.这样,你的Dev-C++就可以支持C++11了 4.若g++要运用于其他环境,请重启设备 阅读全文
posted @ 2020-12-04 13:12 hulian425 阅读(1091) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 12 下一页