摘要: 配置yum包管理 yum 换源 # 备份原来的repo文件 mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup # 下载阿里云的源 wget -O /etc/yum.repos.d/CentOS- 阅读全文
posted @ 2021-01-21 16:23 VanGy 阅读(10659) 评论(3) 推荐(1) 编辑
摘要: 双端口RAM 两个端口对同一主存操作有以下4种情况: 两个端口不同时对同一地址单元存取数据 两个端口同时对同一地址单元读出数据 两个端口同时对同一地址单元写入数据 可能会发生写入错误 两个端口同时对同一地址单元,一个写入数据,另一个读出数据 可能会发生读出错误 针对上述可能发生的错误的解决方法:(类 阅读全文
posted @ 2021-01-10 14:45 VanGy 阅读(543) 评论(0) 推荐(0) 编辑
摘要: 计算机基础知识 计算机结构 DMA方式(Direct Memory Access)(成组数据传递方式):是一种直接内存操作,CPU在收到总线请求后,会在当前的总线周期结束后,按DMA信号的优先级线后作出响应。 指令寄存器是CPU中的关键寄存器,其内容为正在执行的指令,其位数取决于指令字长。 累加寄存 阅读全文
posted @ 2021-01-05 00:36 VanGy 阅读(817) 评论(0) 推荐(1) 编辑
摘要: 建模四原则 选择建立什么样的模型对如何开发和解决问题具有重要的影响。 每个模型可以有多种表达方式。 最好的模型总是能够切合实际。 孤立的模型是不完整的。 面向对象建模 面向对象思想:用类和对象表示现实世界,用消息和方法来模拟现实世界的核心思想。 面向对象特性: 封装性 继承性 多态性 封装(Enca 阅读全文
posted @ 2021-01-05 00:23 VanGy 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 傅立叶级数: 任何周期函数都可以用正弦函数和余弦函数构成的无穷级数来表示 \(f(t) = a_{0} + \displaystyle \sum_{n=1}^\infty a_{n}cos(nw_{0}t)+b_{n}sin(nw_{0}t)\) 傅立叶变换: 傅里叶变换可以看作傅里叶级数的极限形式 阅读全文
posted @ 2021-01-05 00:19 VanGy 阅读(1069) 评论(0) 推荐(0) 编辑
摘要: Android Intent Android应用程序由Activity、Service、Content、Bordercast Receiver 和Content Provider等组件组成。 除了Content Provider外,Activity、Service和Bordercast Receiv 阅读全文
posted @ 2021-01-05 00:18 VanGy 阅读(260) 评论(0) 推荐(0) 编辑
摘要: 题干 You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order and each of their nodes con 阅读全文
posted @ 2021-01-05 00:11 VanGy 阅读(54) 评论(0) 推荐(0) 编辑
摘要: 题干 Given a string, find the length of the longest substring without repeating characters. Example 1: Input: "abcabcbb" Output: 3 Explanation: The answ 阅读全文
posted @ 2021-01-05 00:10 VanGy 阅读(52) 评论(0) 推荐(0) 编辑