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

Lines Matching defs:ib

31     int* ib = new int[N];
36 ib[i] = 2*i+1;
38 InIter2(ib), InIter2(ib+N), OutIter(ic));
44 delete [] ib;
50 int* ib = new int[N];
56 std::copy(ic+N, ic+2*N, ib);
58 std::sort(ib, ib+N);
60 InIter2(ib), InIter2(ib+N), OutIter(ic));
66 delete [] ib;