Boost logo

Boost Users :

From: Olaf van der Spek (olafvdspek_at_[hidden])
Date: 2006-04-16 18:50:59


On 4/16/06, yinglcs2_at_[hidden] <yinglcs2_at_[hidden]> wrote:
> is there a better way to compare 2 stl list? I write a

Yes.
What about just srcList == dstList?

BTW, does your function actually compile?
I thought std::list doesn't provide operator[]?

> function like
> this below, but I wonder if there is a better way to
> achieve that with boost(e.g.
> less code)?
>
> bool isSame(const list<int>& srcList, const
> list<int>& destList ) {
> if (srcList.size() != destList.size()) {
> return false;
> }
>
> int size = srcList.size();
> for (int i = 0; i < size; i++) {
> if (srcList[i] != destList[i]) {
> return false;
> }
> }
>
> return true;
>
> }
>
> Thank you.
>
> __________________________________________________
> Do You Yahoo!?
> Tired of spam? Yahoo! Mail has the best spam protection around
> http://mail.yahoo.com
> _______________________________________________
> Boost-users mailing list
> Boost-users_at_[hidden]
> http://lists.boost.org/mailman/listinfo.cgi/boost-users
>


Boost-users list run by williamkempf at hotmail.com, kalb at libertysoft.com, bjorn.karlsson at readsoft.com, gregod at cs.rpi.edu, wekempf at cox.net