上一页 1 ··· 4 5 6 7 8 9 下一页
摘要: 讲解链接https://blog.51cto.com/9291927/2063393 https://blog.csdn.net/hguisu/article/details/7674195 1.栈的概念 store a set of elements in a particular order L 阅读全文
posted @ 2019-09-15 10:32 柠檬味呀 阅读(127) 评论(0) 推荐(0) 编辑
摘要: 算法导论 第三章 函数的增长 1.渐近紧确界 渐近记号Θ、Ο、o、Ω、ω详解 链接:https://blog.csdn.net/so_geili/article/details/53353593##目录: 1.渐近紧确界记号:Θ ΘΘ(big-theta)2.渐近上界记号 :O OO(big-oh) 阅读全文
posted @ 2019-09-14 21:22 柠檬味呀 阅读(197) 评论(0) 推荐(0) 编辑
摘要: 算法导论 第二章 算法基础 1.示例 INSERTION-SORT(A) for j=2 to A.length key=A[j]//要插入的元素A[j] //insertion A[j] into sequence A[1,2,...,j-1]. i=j-1//从第j-1个元素开始逐一比对 for 阅读全文
posted @ 2019-09-14 20:54 柠檬味呀 阅读(145) 评论(0) 推荐(0) 编辑
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2019-09-14 18:09 柠檬味呀 阅读(18) 评论(0) 推荐(0) 编辑
摘要: /* * bitAnd - x&y using only ~ and | * Example: bitAnd(6, 5) = 4 * Legal ops: ~ | * Max ops: 8 * Rating: 1 */int bitAnd(int x, int y) { z=~(~x|~y); re 阅读全文
posted @ 2019-09-13 20:37 柠檬味呀 阅读(1016) 评论(0) 推荐(0) 编辑
摘要: 冒泡排序#include <iostream>using namespace std;void bubblesort1A(int A[],int n);int main() { int A[10]={0},n=0,i=0; cin>>n; for( i=0;i<n;i++) cin>>A[i]; b 阅读全文
posted @ 2019-09-12 21:47 柠檬味呀 阅读(437) 评论(0) 推荐(0) 编辑
摘要: 练习2.1320世纪70年代末至80年代末,DigitalEquipment的VAX计算机是一种非常流行的机型。它没有布尔运算AND和OR指令,仅仅有bis(位设置)和bic(位清除)这两种指令。两种指令的输入都是一个数据字x和一个掩码字m。 他们生成一个结果z。z是有依据掩码m的位来改动x的位得到 阅读全文
posted @ 2019-09-11 11:32 柠檬味呀 阅读(288) 评论(0) 推荐(0) 编辑
摘要: 1.编程习惯 代码不要写中文。 只能用局部变量,不能用全局变量。 单目操作符:~按位取反 !取反 双目操作符 与 或 非 加 移位 2.复习 1.Shell 包裹内核的壳 2.Kernel 内核 每个操作系统都有一个内核 不与程序交互 function:系统调用:提供函数 e.g file open 阅读全文
posted @ 2019-09-10 16:40 柠檬味呀 阅读(148) 评论(0) 推荐(0) 编辑
摘要: int main(){ Line line(10.0); cout<<" "<<line.getLength()<<endl; line.setLength(6.0); cout<<" "<<line.getLength()<<endl; return 0;};注意主函数中需先声明line,类型为L 阅读全文
posted @ 2019-09-07 22:17 柠檬味呀 阅读(217) 评论(0) 推荐(0) 编辑
摘要: 1.引用传递 #include<iostream>using namespace std;int cubeByRef( int& );int main(){ int number=5; int result; cout<<"number="<<number<<endl; result=cubeByR 阅读全文
posted @ 2019-09-05 21:47 柠檬味呀 阅读(266) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 下一页