C\C++冒泡法
bool GetMinK(unsigned int uiInputNum, int * pInputArray) { bool ret = true; for(int i=0;i<uiInputNum;i++) { for(int j=0;j<uiInputNum-1-i;j++) { int tmp; if(pInputArray[j] > pInputArray[j+1]) { tmp = pInputArray[j]; pInputArray[j] = pInputArray[j+1]; pInputArray[j+1] = tmp; } } }return ret; }
长风破浪会有时,直挂云帆济沧海!
可通过下方链接找到博主
https://www.cnblogs.com/judes/p/10875138.html