自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(3)
  • 收藏
  • 关注

原创 MIT 6.S081 GDB调试

MIT 6.S081 GDB调试新建一个终端$gdb-multiarch // 进入gdb(gdb)file user/_uthread // 符号表定位(gdb)target remote localhost:26000(gdb)b main再建一个终端$make qemu-gdb$uthread就可以调试了

2021-05-16 16:14:46 939

原创 基础排序算法代码(选择、冒泡、插入、归并、快排、堆排序)

考试复习中、考完看能不能整个图出来#include <stdio.h>#include <string.h>#include <stdlib.h>// 新数组int *NewArray(int size){ return (int*)malloc(sizeof(int)*size);}//释放内存void FreeArray(int a[]){ free(a);}// 求最小值int mymin(int a, int b)

2020-08-28 13:04:33 151

原创 C++/OOP/8-2 Students II (10分)

C++/OOP/8-2 Students II (10分)Write a CLI program that reads scores and names of students, and prints out a summary sheet (in the same format with the last homework “Students I”). The user can input a...

2020-03-29 00:51:26 2683

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除