106 1 分钟

# 寄存器 只有 BX , BP 可以作基址寄存器,只有 SI , DI 可以作变址寄存器。 BP 隐含 SS 段寄存器。 # PTR 字段 目标操作为存储器,且位宽无法推断的情况使用 PTR 字段。若立即数大于 1000H , 那么也可以不采用 PTR 字段。
723 1 分钟

# 概述 用到的资料包括: 课程主页: 6.851: Advanced Data Structures 课程视频: 【MIT 公开课】6.851 高级数据结构(完结・中英字幕・机翻) # 计算模型 数据结构的讨论基于 pointer machine 模型。该模型包括一个根节点 (root), 合法的操作包括 新建节点 x = new node 域查找 look up fields x = y.field 域设置 set up fields x.field = y 基本计算 x = y+z etc. 其中, x, y 是根节点的域。删除节点的操作暂时不讨论。 # Temporal...
1.4k 1 分钟

# Experiment 10: Random Forest This is the report of Experiment 10: Random Forest. # Purpose This is a relaxing experiment. In this experiment, we need to complete some requirements according to the experimental instructions, which are about implementing a random forest. # Procedure and Results We...
5.6k 5 分钟

# Experiment 5: SVM This is the report of Experiment 5: SVM. # Linear SVM - basic # Purpose In this part, we will use a basic linear SVM to classify a group of data. The train set and test set are given as file training_1.txt and test_1.txt. # Procedure A basic linear SVM with regular term can be...
1.6k 1 分钟

# Experiment 9: Decision Tree This is the report of Experiment 9: Decision Tree. # Purpose In this experiment, we want to classify the given wine dataset with a decision tree. I chose the ID3 algorithm, which decides whether it's a leaf node with information gain. # Procedure # generate training...
558 1 分钟

# 概述 # 传输层的功能 # 传输层的寻址 # UDP 协议 UDP 协议全称用户数据报协议 (User Datagram Protocol, UDP), 是运输层上最主要的无连接传输协议。UDP 只在 IP 的数据报服务之上增加了以下功能: 复用 (multiplexing) 和分用 (inverse multiplexing) 差错检测 # UDP 的数据报格式 # UDP 的应用场景 # 实时传输协议 (RTP) 用于传输流媒体信息,在实时应用中采用。 # 实时传输控制协议 (RCTP) 用来处理流同步信息,为源提供反馈信息。 # TCP 协议 TCP 协议全称传输控制协议...