MCPcopy Create free account
hub / github.com/codemistic/Data-Structures-and-Algorithms / Reverse2

Method Reverse2

Arrays/18_Menu_Based_problem.cpp:187–194  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

185
186}
187void Array::Reverse2()
188{
189 int i,j;
190 for(i=0,j= length-1;i<j;i++,j--)
191 {
192 swap(& A[i],& A[j]);
193 }
194}
195void Array::InsertSort(int x)
196{
197 int i= length-1;

Callers

nothing calls this directly

Calls 1

swapFunction · 0.70

Tested by

no test coverage detected