⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 c09p464.txt

📁 Data Abstraction & Problem Solving with C++源码
💻 TXT
字号:
void insertionSort(DataType theArray[], int n)// ---------------------------------------------------// Sorts the items in an array into ascending order.// Precondition: theArray is an array of n items.// Postcondition: theArray is sorted into ascending// order; n is unchanged.// ---------------------------------------------------{   // unsorted = first index of the unsorted region,    // loc = index of insertion in the sorted region,    // nextItem = next item in the unsorted region   // initially, sorted region is theArray[0],    //            unsorted region is theArray[1..n-1];   // in general, sorted region is    //             theArray[0..unsorted-1],    // unsorted region is theArray[unsorted..n-1]   for (int unsorted = 1; unsorted < n; ++unsorted)   {  // Invariant: theArray[0..unsorted-1] is sorted      // find the right position (loc) in       // theArray[0..unsorted] for theArray[unsorted],       // which is the first item in the unsorted       // region; shift, if necessary, to make room      DataType nextItem = theArray[unsorted];      int loc = unsorted;      for (;(loc > 0) && (theArray[loc-1 ]> nextItem);            --loc)         // shift theArray[loc-1] to the right         theArray[loc] = theArray[loc-1];      // Assertion: theArray[loc] is where nextItem       // belongs      // insert nextItem into Sorted region      theArray[loc] = nextItem;   }  // end for}  // end insertionSort

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -