#ifndef btree_h_included
#define btree_h_included
/*
*煙台大學計控學院
*作 者:林穎
*完成日期:2023年12月10日
*問題描述:用序列作為測試資料,驗證直接選擇排序
*/
#endif // btree_h_included
[cpp] view plain copy
#include #define maxsize 20
typedef int keytype; //定義關鍵字型別
typedef char infotype[10];
typedef struct //記錄型別
rectype; //排序的記錄型別定義
void selectsort(rectype r,int n)
{ int i,j,k,l;
rectype temp;
for (i=0; i
執行結果
知識點總結
將關鍵字分為有序區和無序區,將當前無序區選出關鍵字最小的與當前無序區中的第乙個交換
第十六周 直接選擇排序
作 者 孫子策 完成日期 2016.12.15 問題描述 用序列作為測試資料,驗證直接選擇排序 include define maxsize 20 typedef int keytype 定義關鍵字型別 typedef char infotype 10 typedef struct 記錄型別 rec...
第十六周 專案1 (5)直接選擇排序
問題描述及 ifndef btree h included define btree h included 煙台大學計控學院 作 者 張雯婧 完成日期 2016年12月9日 問題描述 用序列作為測試資料,驗證直接選擇排序 endif btree h included include define m...
第十六周專案1 (3)直接選擇排序
檔名稱 專案1.cpp 作 者 高金豔 完成日期 2016年12月13日 版 本 號 v1.0 問題描述 驗證直接選擇排序,完成測試。輸入描述 無 程式輸出 測試資料 include define maxsize 20 typedef int keytype 定義關鍵字型別 typedef char...