摘要:
liunx guide linux interface application interface system call interface library function interface linux component bootloader 引导程序(Bootloader):引导程序是管理 阅读全文
摘要:
c++基础思维导图 预备知识 变量的使用 语法变量的类型 变量名 = 初始值; 变量存在的意义在于方便我们管理内存空间 变量的类型 int float double short int long long long 常量的使用 #define 宏常量 语法: #define 常量名常量值 (通常在文 阅读全文
摘要:
class Solution { public: int findPeakElement(vector<int>& nums) { // write code here //题目只需要求一个峰值即可,我门可以利用二分法+一直向峰值逼近的策略 int left =0; int right = nums 阅读全文