STL模板中。用查找算法find()对数据进行查找怎么找啊???为啥下面的查找不对???

#include<iostream>#include<vector>#include<algorithm>#include<functional>usingnamespa... #include <iostream>
#include <vector>
#include <algorithm>
#include <functional>
using namespace std;
void main()
{int a[]={3,1,9,5,7,2,4,6,0,8};
const int n=sizeof(a)/sizeof(int);
vector<int>col(a,a+n);
ostream_iterator<int>output(cout," ");
cout<<"数组:";
copy(col.begin(),col.end(),output);
sort(col.begin(),col.end());
cout<<endl<<"升序排列:";
copy(col.begin(),col.end(),output);
sort(col.begin(),col.end(),greater<int>());
cout<<endl<<"降序排列:";
copy(col.begin(),col.end(),output);
cout<<endl;
int m=*find(col.begin(),col.end(),4);
cout<<"查找数字4的位置 :"<<m<<endl;
}
展开
 我来答
707ncgzes
2011-06-11 · TA获得超过2657个赞
知道大有可为答主
回答量:4551
采纳率:0%
帮助的人:2750万
展开全部
#pragma warning(disable: 4786)

#include <algorithm>
#include <iostream>
#include <iterator>
#include <fstream>
#include <functional>
using namespace std;
/* 这是MSDN中的接口:
template<class InputIterator, class T> inline
InputIterator find(InputIterator first, InputIterator last, const T& value)
*/
/*
int main()
{
const int ARRAY_SIZE = 8 ;
int IntArray[ARRAY_SIZE] = ;

int *location ;
int i ;
int value = 4 ;

cout << "IntArray { " ;
for(i = 0; i < ARRAY_SIZE; i++)
cout << IntArray[i] << ", " ;
cout << " }" << endl ;

location = find(IntArray, IntArray + ARRAY_SIZE, value) ;

if (location != IntArray + ARRAY_SIZE)
cout << "First element that matches " << value
<< " is at location " << location - IntArray << endl;
else
cout << "The sequence does not contain any elements"
<< " with value " << value << endl ;
return 0;
}
*/

/* MSDN中两种 sort 接口,下边的那个需要一个function object ....
template<class RanIt>
void sort(RanIt first, RanIt last);
template<class RanIt, class Pred>
void sort(RanIt first, RanIt last, Pred pr);
*/

bool cmp (int a,int b) //从大到小排序,其实就是重载 sort 默认的 < 符号;sort 默认的是从小到大。。。
{
return a>b;
}

int main()
{
const int ARRAY_SIZE = 8 ;
int IntArray[ARRAY_SIZE] = ;

sort(IntArray,IntArray + ARRAY_SIZE, cmp);

ostream_iterator<int> os (cout," ");
copy (IntArray,IntArray + ARRAY_SIZE, os);

cout<<endl<<endl;

sort(IntArray,IntArray + ARRAY_SIZE);
copy (IntArray,IntArray + ARRAY_SIZE, os);
return 0;
}
//都试了一下,应该没有什么问题的。。。你看看是不是满足你要求。。。呵呵。。期待交流。。
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
两脚踏四船
2011-06-10 · TA获得超过811个赞
知道小有建树答主
回答量:200
采纳率:0%
帮助的人:170万
展开全部
find()函数返回的是一个迭代器,如果找到就返回一个指向该元素的迭代器,如果没找到就返回指向末尾的迭代器,也就是col.end();所以*find()取出的就是找到的值
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式