This topic has been archived. It cannot be replied.
-
工作学习 / IT技术讨论 / c++ guys come to crab the code
-bluelotus(时光漫步);
2003-7-10
{580}
(#1279774@0)
-
if (*(ite+i).i>*(ite+i+1).i) //<-it seems impossible work
=> if (*(ite+i)->i>*(ite+i+1)->i)
-informix(informix);
2003-7-10
(#1279806@0)
-
right, another issue is std::list::iterator is not random access, but bi-directional. only can be it++ or it--
-bluelotus(时光漫步);
2003-7-11
(#1281803@0)