C程笔记&回顾
C程复习 第一章 什么是C语言 第一章内容更多的是对C语言的基本语法和程序学习相关基础知识的总述,其中会涉及到函数,ADT等内容,这里只是做一个基础认识,后续章节会有更加详细的表述和代码示例。:kiss C程序是由函数所组成的。 程序和数据一样,共同存放在存储器中。当程序要运行时,当前准备运行的指令从内存被调入CPU中,由CPU处理该条指令。这种将程序和数据共同存储的思想是冯·诺依曼模型的存储程序概念。 指令部分主要涉及汇编,C程要求了解即可: 指令作为最基础的计算机处理单元,一般由多个指令组合实现计算机的复杂功能 一般程序会经过编译器(也就是C程要求的DevC++,vscode等)编译成电脑可执行的二进制文件,其中内容为顺序排列的指令码 程序设计语言 数据表达 数据类型(data type):对某种具有共同特征的数据集合的总称 代表什么数据 可以对数据进行什么操作(运算) 常见数据类型: 整形:整数变量 实型(浮点型):小数变量 1...
Fundamental data structure
Algorithm analysis algorithm and program algorithm:described by human languages,flow charts,programming lanuage,pseudocode program:written in some programming language(==can be meaningless==) what to analyze running time? ==run time==:machine and compiler-dependent ==Time & space complexities==:machine and compiler-independent Assumption(usually not true) sequentially executed each instruction is simple,tasks exactlyone time unit integer size is fixed & infinite...
Introduction of my blog
本网站为Aprsev尝试个人网站搭建测试网站,会投放一定自制笔记……
Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub. Quick Start Create a new post 1$ hexo new "My New Post" More info: Writing Run server 1$ hexo server More info: Server Generate static files 1$ hexo generate More info: Generating Deploy to remote sites 1$ hexo deploy More info: Deployment






