2018年11月5日

算法初步

摘要: 算法初步 1, 选择排序 最简单粗暴地,也是大O比较大的 #include <iostream> #include <algorithm> using namespace std; void selectionSort(int arr[], int n){ for(int i = 0 ; i < n 阅读全文

posted @ 2018-11-05 23:37 free_rocket_man 阅读(427) 评论(0) 推荐(0) 编辑

实验二

摘要: 汇编实验二 1, 使用debug,将程序写入内存,逐条执行,根据指令执行后的实际运算填空 Mov ax,ffff Mov ds,ax Mov ax,2200 Mov ss,ax Mov sp,0100 Mov ax,[0];ax=60ea Add ax,[2]; ax=60fc Mov bx,[4] 阅读全文

posted @ 2018-11-05 14:39 free_rocket_man 阅读(191) 评论(3) 推荐(0) 编辑

导航