摘要:
折半查找递归算法跟迭代算法: #include <iostream>using namespace std;int diedai(int *a,const int x,const int n);int digui(int *a,const int x,const int left,const int 阅读全文
摘要:
随着学习的深入,才渐渐地发现,自己的基础是多么的差劲。悔不当初,上课的时候就应该多认真听讲了。 多层 for 之间的嵌套使用。虽说是多层,事实上 for 循环嵌套的层数也不能太多。通常为两个 for 循环的嵌套,超过两个的极少使用。与单个 for 循环相比,多个 for 循环的嵌套在逻辑上更复杂一点 阅读全文
摘要:
顺序查找: #include <iostream>//顺序查找,速度慢,只能按顺序去查找using namespace std; int shunxu(int *a,const int n,const int x);int main(){ int a[]={2,4,6,8,0,1,3,5,7,9}; 阅读全文