Home | History | Annotate | Download | only in alg.merge

Lines Matching defs:ib

34     int* ib = new int[N];
39 ib[i] = 2*i+1;
41 std::reverse(ib, ib+N);
43 InIter2(ib), InIter2(ib+N), OutIter(ic), std::greater<int>());
49 delete [] ib;
55 int* ib = new int[N];
61 std::copy(ic+N, ic+2*N, ib);
63 std::sort(ib, ib+N, std::greater<int>());
65 InIter2(ib), InIter2(ib+N), OutIter(ic), std::greater<int>());
71 delete [] ib;