- 博客(4)
- 收藏
- 关注
原创 lab3-exercise2
Stack_overflow.rs: #![no_std] #![no_main] #![feature(abi_x86_interrupt)] use core::panic::PanicInfo; use hj_os::serial_print; #[no_mangle] pub extern "C" fn _start() -> ! { serial_print!("st...
2019-11-18 20:32:51
147
原创 lab3
code lib.rs interrupts.rs vga_buffer.rs main.rs serial.rs lib.rs #![no_std] #![cfg_attr(test, no_main)] #![feature(custom_test_frameworks)] #![test_runner(crate::test_runner)] #![reexport_test_h...
2019-11-09 11:23:41
162
原创 操作系统实验
lab3-Exercise 1代码备注 、、 #![no_std] #![cfg_attr(test, no_main)] #![feature(custom_test_frameworks)] #![test_runner(crate::test_runner)] #![reexport_test_harness_main = "test_main"] #![feature(abi_x86_in...
2019-11-09 10:57:28
160
原创 算法导论
《算法导论》–排序算法@[TOC]算法入门(这里写自定义目录标题) 插入排序 //插入排序 #include <iostream> #include<bits/stdc++.h> using namespace std; int num[100]; void insert_sort(int a[],int n) { for(int j=1;j<
2019-03-02 16:26:45
116
1
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人