Operating System Chapter7 真实世界的并发编程 Jungle 发布于 2023-03-15 包括在 Operating SystemOperating System $Nanjing\ University\rightarrow Yanyan\ Jiang\newline$ Overview 复习 并发编程的基本工具:线程库、互斥和同步 本次课回答的问题 Q: 什么样的任务是需要并行/并发的?它们应该如何实现? 本次课主要内容 高
Operating System Chapter6 并发控制:同步 Jungle 发布于 2023-03-10 包括在 Operating SystemOperating System $Nanjing\ University\rightarrow Yanyan\ Jiang\newline$ Update Update in 2023-03-10 20:48 在洲的提醒下,✋才发现原来租国外电话号那个网站可以有访问ChatGPT的教程,之前首尔线和美国线都因为反IP给ban了
Operating System Chapter5 并发控制:互斥 Jungle 发布于 2023-03-08 包括在 Operating SystemOperating System $Nanjing\ University\rightarrow Yanyan\ Jiang\newline$ Update Update in 2023-03-08 17:30 继续看,并发真™️👨 Overview 复习 状态机、状态机、状态机 本次课回答的问题 Q: 如何在多处理器上实现线程互斥? 本次课主要内容 自旋锁的
Operating System Chapter4 理解并发程序执行 Jungle 发布于 2023-03-06 包括在 Operating SystemOperating System $Nanjing\ University\rightarrow Yanyan\ Jiang\newline$ Update 晚上看的,Peterson算法好™️的👨,证明等过两天有时间给看了 理解并发程序执行 复习 一般程序执行 线程的栈帧会用一个list来
Linux x86 Program Start Up or - How the heck do we get to main()? Jungle 发布于 2023-03-04 包括在 Operating System概述 文章介绍了X86系统main函数调用前后的一些细节,并阐述了C程序的构造函数和析构函数,以及.init,.fini,init_array
速通BigInteger Jungle 发布于 2023-02-28 包括在 Java速通BigInteger 首先需要导包 1 import java.math.BigInteger; BigInteger的一些方法 BigInteger bigInteger = new BigInteger("123456"); 使用String进行初始化 abs() 返回一个BigInteger。
Chapter2-部分二刷-个人理解System call Jungle 发布于 2023-02-26 包括在 Operating System二刷部分Chapter2 $\Longrightarrow$ 如何理解System call 问题:构造最小的”Hello world”程序 基本程序和静态编译 1 2 3 4 5 6 #include <stdio.h> int main() { printf("Hello world"); return 0;
《C++ Primer》 字符串,向量和数组 Jungle 发布于 2023-02-22 包括在 C++ PrimerC++ Primer 字符串,向量和数组 标准库类型string 标准库类型string表示可变长的字符序列,使用string类型必须先包含头文件,string定
CMU 15-445 Lecture #01: Course Overview & Relational Model Jungle 发布于 2023-02-22 包括在 CMU 15-445 Database SystemsCMU 15-445 Database Systems Lecture #01: Course Overview & Relational Model Outline Course Logistics Relational Model Relational Algebra Course overiew This course is about the design/implementation of database management systems (DBMSs) This is not a course ($\rightarrow Key\ point\ is\ the\ theory\ and\ the\ concept$) about how to use a DBMS to build applications or how to administer a DBMS.→ See CMU 95-703 (Heinz College) PROJECTS All projects will use the CMU DB Group BusTub academic DBMS.
Computer Organization and Architecture Parallel Process & Multicore Computers Jungle 发布于 2023-02-01 包括在 Computer Organization and ArchitectureComputer Organization and Architecture Parallel Process & Multicore Computers Outline Parallel Processing Multiple Processor Organizations Symmetric Multiprocessors Clusters Nonuniform Memory Access Vector Computation Multicore Computers Multiple Processor Organizations Types of multiple processor Single instruction, single data stream – SISD Single instruction, multiple data stream – SIMD Multiple instruction, single data stream – MISD Multiple instruction, multiple data stream - MIMD SISD Organizations SISD的结构中