08 2021 档案
摘要:1 /** 2 * 循环单链表的实现 3 */ 4 #include <stdio.h> 5 #include <stdlib.h> 6 7 typedef struct List { 8 int data; 9 struct List *pNext; 10 } *List; 11 12 /** 1
阅读全文
摘要:有一数据存放在内存20000H单元中,现给定段地址为SA,若想用偏移地址寻址到此单元,则SA 应满足的条件是:最小是:?最大是:? 解题思路: 物理地址=段地址x16+偏移地址 最大值可以假设不需要偏移地址也就是为0,列出方程SAx16H+0H=20000H,解之SA=2000H 最小值假设全都需要
阅读全文
摘要:1 mov ax,2 2 add ax ax 3 add ax ax 4 add ax ax
阅读全文
摘要:1 #include <stdio.h> 2 #include <stdlib.h> 3 4 typedef struct Node { 5 int data; 6 struct Node *next; 7 } Node, *LinkList; 8 9 LinkList initList() { 1
阅读全文
摘要:1 #include<stdio.h> 2 #include <malloc.h> 3 #include <stdbool.h> 4 5 #define LIST_INIT_SIZE 100 // 线性表空间初始分配量 6 #define LIST_INCREMENT 10 //线性表存储空间的分配
阅读全文
摘要:1.查看当前所有的数据库 show databases; 2.打开指定的库 use 库名 3.查看当前库的所有表 show tables; 4.查看其它库的所有表 show tables from 库名; 5.创建表 create table 表名{ 列名 列类型, 列名 列类型, ... } 6.
阅读全文

浙公网安备 33010602011771号