《数据结构:邓俊辉版》——交换排序
Posted predator-wang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了《数据结构:邓俊辉版》——交换排序相关的知识,希望对你有一定的参考价值。
void SelectSort(int nLen) { for (int i = 0; i < nLen; i++) { int j = i; int nMax = i; while (j < nLen) { if (g_szArray[j] > g_szArray[nMax]) { nMax = j; } j++; } int tmp = g_szArray[i]; g_szArray[i] = g_szArray[nMax]; g_szArray[nMax] = tmp; } }
以上是关于《数据结构:邓俊辉版》——交换排序的主要内容,如果未能解决你的问题,请参考以下文章
排序算法(高级篇,整理自学堂在线邓俊辉老师《数据结构》课程)