冒泡排序

it2026-01-06  6

#ifndef BUBBLING_INSERT_H[#define BUBBLING_INSERT_Hvoid bubblingInsert(int *arr,int Length); void bubblingInsert(int *arr,int Length){ int temp; for(int i=0;i<Length ;i++){ for(int j=0;j<Length-1-i; j++){ if(arr[j]>arr[j+1]){ temp=arr[j]; arr[j]=arr[j+1]; arr[j+1]=temp; } } }}#endif 来自为知笔记(Wiz)

转载于:https://www.cnblogs.com/yml435/p/4655551.html

相关资源:数据结构—成绩单生成器
最新回复(0)