博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
选择排序
阅读量:6552 次
发布时间:2019-06-24

本文共 364 字,大约阅读时间需要 1 分钟。

Select Sorting

void selectSort(int a[], int n){    int i = 0, j = 0, min= 0, temp = 0;    for(i = 0; i < n - 1; i++)    {        min = i;        for(j = i + 1, j < n; j++)        {            if(a[min] > a[j])                min = j;        }        if(min != i)            swap(a[min], a[i]);    }    }

 

O(n^2)

转载于:https://www.cnblogs.com/alexeyqian/p/3388935.html

你可能感兴趣的文章
Windows 7 32 上 selenium 2+sikuli解决swfupload类型上传插件
查看>>
Spring boot学习二
查看>>
android4.1.1 Settings WIFI模块浅析
查看>>
bi business inteligence
查看>>
php 和redis
查看>>
计算机代数系统(free!GPL)Yacas
查看>>
Spring系列之-Spring IOC容器设计:依赖注入设计
查看>>
360安全浏览器中iframe顶部会产生多余空白
查看>>
mysql sql php 参数化查询
查看>>
canal源码分析——DirectLogFetcher源码分析
查看>>
Thrift0.9.2 安装
查看>>
基于 Tile 连接 Row-Store 和 Column-Store
查看>>
新办公环境之浏览器上不了网
查看>>
只要有基础的access_token和用户openid就可以判断用户是否关注该公众号
查看>>
oracle备份
查看>>
linux 下tr命令
查看>>
Remove Element
查看>>
LNMP架构之访问日志、日志切割、静态文件不记录及过期时间设置
查看>>
Hadoop之HDFS基本概念
查看>>
为WordPress主题加入一个可选的定制样式表
查看>>