摘要: 折半查找迭代算法: #include <iostream>//迭代的方法:using namespace std;//*a传递数组,x为传递的要查找的数,n为数据的个数int erfen(int *a,const int x,const int n);int main(){ int a[]={1,2 阅读全文
posted @ 2020-02-19 10:20 清风沐竹 阅读(178) 评论(0) 推荐(0)
摘要: 折半查找递归算法跟迭代算法: #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 阅读全文
posted @ 2020-02-19 10:16 清风沐竹 阅读(811) 评论(0) 推荐(0)
摘要: 今天来总结下递归: #include <iostream> using namespace std; void doA(){ cout<<"你好啊"<<endl; doA();}void doB(){ cout<<"从前有座山,山里有座庙,庙里有个老和尚,老和尚再给小和尚讲故事:"<<endl; d 阅读全文
posted @ 2020-02-19 10:03 清风沐竹 阅读(259) 评论(0) 推荐(0)