Home | Info | Community | Development | myReactOS | Contact Us
[protected]
Definition at line 135 of file perm_test.cpp.
{ int v1[3] = { 0, 1, 2 }; next_permutation(v1, v1 + 3); CPPUNIT_ASSERT(v1[0]==0); CPPUNIT_ASSERT(v1[1]==2); CPPUNIT_ASSERT(v1[2]==1); }