计算机网络实验报告1 Posted on 2021-03-04 Words count in article: 1.1k | Reading time ≈ 4 计算机网络实验报告1任务1目标: 创建一个以自己姓名命名的java项目,编写java代码,将自己的学号和姓名打印出来,将操作过程中的关键步骤和实验结果截图 实验代码: 12345678910111213141516package com.company;import java.util.Scanne ... Read more »
概率论-样本空间和概率 Posted on 2021-03-03 Words count in article: 4.2k | Reading time ≈ 17 样本空间和概率参考书本: 概率导论 第二版 Bertsekas 著 概率论与数理统计教程 第三版 峁时松 等著 集合可数集与不可数集集合按照可不可数可以分成两大类: 可数集与不可数集 如果 S 中的元素有限且可数,那么我们可以这样写: $S={x_1,x_2,\cdots,x_n}$ 如果 S ... Read more »
os实验报告2-shell的实现 Posted on 2021-03-02 Words count in article: 8.5k | Reading time ≈ 35 Shell 在 Minix3中的实现目的Shell主体结构是一个while循环,不断地接受用户键盘输入行并给出反馈。Shell 将输入行分解成单词序列,根据命令名称分为二类分别处理 ,即shell内置命令(例如cd,history,exit)和 program 命令 (例如/bin/目录下的ls,g ... Read more »
os实验报告1-环境搭建 Posted on 2021-03-02 Words count in article: 792 | Reading time ≈ 2 MINIX系统的安装和环境配置目的为了配置操作系统实验环境 使用环境物理机: Windows10 虚拟机软件: Oracle VirtualBox 虚拟机: Minix 3.3 实验过程新建虚拟机首先我们在VirtualBox中创建一个虚拟机 内存可以选择 512MB,磁盘选择动态分配,共10GB ... Read more »
HTMLandCSS基础3-印刷与图片 Posted on 2021-02-03 Words count in article: 5k | Reading time ≈ 20 文字与图片$sss^y$ TypographyStyling Fonts网页上的字体大体可以分成三类:Serif, Sans-serif, Monospace Serif 衬线字体族 具有修饰过的笔画,向外展开的或者尖细的末端,或者是带有实际衬线的末端 一笔一划末端(两头)都带点变化装饰,比如宋体 ... Read more »
datalab Posted on 2021-01-31 Words count in article: 3.3k | Reading time ≈ 15 datalab这是我们做的第一个lab,题解是早就写在pdf里的,只是一直没有写成博客。现在我们来一题一题看: int bitAnd(int x,int y)首先是 bitAnd,顾名思义就是按位与:全是1结果才是1,有0结果就是0. 因为这题只能用 |和 ~ , 比如说两个数都是1,那么取反后他们 ... Read more »
shell-lab Posted on 2021-01-29 Words count in article: 2.4k | Reading time ≈ 11 Shell Lab在这个 tsh.c 文件里面,我们需要完成7个函数的编写: 12345678void eval(char *cmdline);int builtin_cmd(char **argv, char *cmdline);void do_bgfg(char **argv, char *cm ... Read more »
matlab函数补充 Posted on 2021-01-28 Words count in article: 502 | Reading time ≈ 2 Matlab 函数补充ode23/ode45 :Runge-Kutta法求解微分方程我们没有必要了解ode23和ode45的内部原理,我们 一阶微分方程求解比如我要求解 一阶微分方程 $y’=cost$ 1234f = @(t,y) cos(t); % 定义函数 f(t,y) = cos(t)ts ... Read more »
HTMLandCSS基础2 Posted on 2021-01-28 Words count in article: 10.3k | Reading time ≈ 41 HTMLandCSS- LayoutThe Box Model在CSS中,一个很重要的概念就是Box Model,也就是当浏览器开始渲染的时候,。下图是一个简单的Box 模型。一共有4层:Content,Padding,Border和Margin。 我们随便写一个paragraph 123< ... Read more »
HTMLandCSS基础1 Posted on 2021-01-25 Words count in article: 9.1k | Reading time ≈ 39 HTMLandCSS基础1我们使用的编辑器是VSCode,需要装prettier和Live Server这两个插件。 HTML BasicsThe Head Section在vscode中,只要敲 !+Tab 就可以打出html文件的基本框架 1234567891011<!DOCTYPE ht ... Read more »