# stu_mgr **Repository Path**: itmojun/stu_mgr ## Basic Information - **Project Name**: stu_mgr - **Description**: 另一个高大上的学生管理系统... - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-04-17 - **Last Updated**: 2023-04-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## bubble_sort ### 函数原型 void bubble_sort(int* nums, int len, int order); ### 参数描述 nums 待排序的整型数组 len 数组长度 order 指定排序方式,0 表示升序,1 表示降序 ### 返回值 无 ### 备注 本函数内部采用的是冒泡排序算法 ### 作者 挨踢魔君(dj@itmojun.com) ### 调用示例 int a[] = {5, 3, 4, 1, 2}; bubble_sort(a, 5, 0); ## judge_storage_mode ### 函数原型 int judge_storage_mode(void); ### 函数功能 判断当前系统的存储模式