计算机系统——Part1 Introduction System In summary: 系统并不是一些事物的简单集合,是一个由一组相互连接的要素构成的、能够实现某个(些)目标的整体。 Model Abstractions, 实体的表示,现实系统的抽象。 特性: Mapping: 是现实世界系统的映射 Reduction: 一个模型只反映了原始系统的一部分 Pragmatic: 一个模型(模拟)... 2021-09-17 Computer Science 计算机系统 计算机系统
Rust学习——TRPL-Part4 Common Programming Concepts Variables and Mutability By deault, variables are immutable. In Rust, the compiler guarantees that when you state that a value won’t change, it really won’t change. Mut 2021-09-15 Computer Science Rust Rust
高级数据库系统——Introduction 高级数据库系统——Introduction Undergraduate Course -- Application-Oriented Graduate Course -- System-Oriented Focus: Lock,Transaction... Deep into DBMS Guidance Part 1: Architecture of Classic Databas 2021-09-13 Computer Science 高级数据库系统 数据库
USTC-SYS-Reading-Group USTC-SYS Reading Group Intercepted from the original page. Preface The Systems Reading Group at University of Science and Technology of China provides an opportunity for students, researchers and f 2021-09-02 Research Report Report
Rust学习——TRPL-Part3 The Rust Programming Language 系列文章学习 Part 3 Programming a Guessing Game 通过具体例子来学习let, match, methods, associated functions等概念。 12345678910111213use std::io;fn main() { println!("Guess 2021-08-31 Computer Science Rust Rust