排序整合

Posted 灵犀一指

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了排序整合相关的知识,希望对你有一定的参考价值。

C语言实现:

冒泡排序:

#include <stdio.h>

void swap(int num[], int i, int j);
void Bubble(int num[], int n, int ascending);    //vc6认不到bool

int main()
{
    int i, numbers[10];
    for (i = 0; i < 10; i++)
    {
        scanf("%d", &numbers[i]);
    }
    Bubble(numbers, 10, 0);
    for (i = 0; i < 10; i++)
    {
        printf("%d ", numbers[i]);
    }
    printf("\n");
    return 0;
}

void Bubble(int num[], int n, int ascending)
{
    int i, j;
    for (i = 0; i < n - 1; i++)
    {
        for (j = i + 1; j < n; j++)
        {
            if (ascending)
            {
                if (num[i] > num[j])
                    swap(num, i, j);
            }
            else
            {
                if (num[i] < num[j])
                    swap(num, i, j);
            }
        }
    }
}

void swap(int num[], int i, int j)
{
    int temp = num[i];
    num[i] = num[j];
    num[j] = temp;
}

 

以上是关于排序整合的主要内容,如果未能解决你的问题,请参考以下文章

初识Spring源码 -- doResolveDependency | findAutowireCandidates | @Order@Priority调用排序 | @Autowired注入(代码片段

springboot Thymeleaf 整合

SpringBoot整合ElasticSearch实现模糊查询,批量CRUD,排序,分页,高亮

以下代码片段的时间复杂度是多少?

Spring+SpringMVC+MyBatis+Maven框架整合

markdown 数组排序片段