上一页 1 ··· 4 5 6 7 8 9 10 11 12 下一页
摘要: L2-4 彩虹瓶 (25分) #include<iostream> #include<cstdio> #include<vector> #include<algorithm> #include<cstring> #include<string> #include<map> #include<queu 阅读全文
posted @ 2020-11-24 19:25 hulian425 阅读(206) 评论(0) 推荐(0) 编辑
摘要: L2-3 深入虎穴 (25分) 建树、找根、找最深的叶子节点 #include<iostream> #include<cstdio> #include<vector> #include<algorithm> #include<cstring> #include<string> #include<ma 阅读全文
posted @ 2020-11-24 18:44 hulian425 阅读(342) 评论(0) 推荐(0) 编辑
摘要: L2-1 链表去重 (25分) #include<iostream> #include<cstdio> #include<vector> #include<algorithm> #include<cstring> #include<string> #include<map> #include<que 阅读全文
posted @ 2020-11-24 16:38 hulian425 阅读(116) 评论(0) 推荐(0) 编辑
摘要: L1-1 帅到没朋友 (20分) #include<iostream> #include<vector> #include<algorithm> #include<string> #include<map> #include<set> #include<cstring> using namespac 阅读全文
posted @ 2020-11-24 16:16 hulian425 阅读(161) 评论(0) 推荐(0) 编辑
摘要: https://pintia.cn/problem-sets/1218774283169423360/problems/1218774532776648716 #include<iostream> #include<string> #include <cstdlib> #include <algor 阅读全文
posted @ 2020-11-24 11:39 hulian425 阅读(162) 评论(0) 推荐(0) 编辑
摘要: https://pintia.cn/problem-sets/1218774283169423360/problems/1218774532776648715 #include <cstdio> #include <iostream> #include <algorithm> #include <s 阅读全文
posted @ 2020-11-24 11:35 hulian425 阅读(133) 评论(0) 推荐(0) 编辑
摘要: https://pintia.cn/problem-sets/1218775317992300544/problems/1218775886605705228 #include<iostream> #include<vector> #include<algorithm> #include<strin 阅读全文
posted @ 2020-11-24 11:30 hulian425 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 编译简单的 C 程序 $ gcc -Wall hello.c -o hello $ ./hello AT&T汇编基本语法 * 寄存器命名原则 AT&T: %eax Intel: eax * 源/目的操作数顺序 AT&T: movl %eax, %ebx Intel: mov ebx, eax * 常 阅读全文
posted @ 2020-11-09 00:07 hulian425 阅读(113) 评论(0) 推荐(0) 编辑
摘要: 字单元 即存放一个字型数据(16位)的内存单元, 由两个地址连续的内存单元组成。高地址内存单元存放字型数据的高位字节,低地址单元存放字型数据的地位字节。 DS和【adress】 8086CPU中的DS寄存器,通常用来存放要访问数据的段地址。比如我们要读取10000H单元的内容,可以用如下的程序段进行 阅读全文
posted @ 2020-10-30 11:51 hulian425 阅读(148) 评论(0) 推荐(0) 编辑
摘要: 通用寄存器 通用寄存器:AX、BX、CX、DX这4个寄存器通常用来存放一般性的数据,被成为通用寄存器。 8086CPU的上一代寄存器都是8位的,为了保证兼容,使原来基于上代CPU编写的程序稍加修改就可以运行再8086上,8086CPU的AX、BX、CX、DX这四个寄存器都可以分为两个独立使用的8位寄 阅读全文
posted @ 2020-10-28 15:17 hulian425 阅读(278) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 下一页