IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 数据结构与算法 -> 数据结构与算法---冒泡排序和快速排序练习 -> 正文阅读

[数据结构与算法]数据结构与算法---冒泡排序和快速排序练习

测试代码

public static void main(String[] args) {
        Integer[] s={10,12,9,7,23,15,99,31,2};
//        Integer[] s={23, 15, 99, 31};
        List list= Arrays.asList(s);
        List<Integer> targetList = new ArrayList<>();
        targetList.addAll(list);
        // 冒泡排序(从小到大排序)
//        first(targetList);

        // 快速排序
        second(targetList);
        System.out.println(targetList);


    }

冒泡排序

/**
     * 冒泡排序(从小到大排序)
     * @param targetList
     */
    private static void first(List<Integer> targetList) {
        // 起始比较的索引
        for (int i = 0; i < targetList.size(); i++){
            // 交换次数
            Integer changeTime = 0;
            // 需要比较的次数
            for(int j = 0;j < targetList.size()-i-1;j++){
                // 比较的两位元素
                Integer firstValue = targetList.get(j);
                Integer secondValue = targetList.get(j+1);
                // 比较的索引
                Integer firstIndex = j;
                Integer secondIndex = j+1;
                //如果第一个值比第二个大就交换位置
                if(firstValue > secondValue) {
                    // 不借助额外空间进行值交换
                    firstValue = firstValue ^ secondValue;
                    secondValue = firstValue ^ secondValue;
                    firstValue = firstValue ^ secondValue;
                    targetList.set(firstIndex,firstValue);
                    targetList.set(secondIndex,secondValue);
                    // 交换次数加一
                    changeTime++;
                }
            }
            // 如果一轮下来没有进行过交换,说明后面的已经排序好了
            // 不需要再进行循环了
            if(changeTime == 0){
                break;
            }
        }
    }

快速排序

private static void second(List<Integer> targetList) {
        // 如果序列的长度大于1则进行排序
        if(targetList.size() > 1) {
            // 目标索引,目标值,最小索引,最高索引
            Integer targetIndex = 0;
            Integer targetValue = targetList.get(0);
            Integer lowIndex = 0+1;
            Integer highIndex = targetList.size()-1;
            // 循环排序
            while (true) {
                // 取最高索引和最低索引的值
                Integer lowValue = targetList.get(lowIndex);
                Integer highValue = targetList.get(highIndex);
                // 先从高找到比目标值小的,并且最高索引要大于最小索引
                while(highValue > targetValue && highIndex > lowIndex){
                    highIndex--;
                    highValue = targetList.get(highIndex);
                }
                // 判断如果是因为找到值而退出上面的循环,就要将值替换到目标索引
                if(highValue <= targetValue){
                    targetList.set(targetIndex, highValue);
                    targetIndex = highIndex;
                }
                // 如果是因为最高索引小于最小索引而退出循环,说明找到了目标值的索引位置
                // 将目标值存入并结束循环
                if (highIndex <= lowIndex) {
                    targetList.set(targetIndex, targetValue);
                    break;
                }
                // 最高索引--
                highIndex--;

                // 再从最小索引开始找比目标值大的
                while(lowValue < targetValue && highIndex > lowIndex){
                    lowIndex++;
                    lowValue = targetList.get(lowIndex);
                }
                // 同上,因为找到值而退出,则将值赋给目标索引
                if(lowValue >= targetValue){
                    targetList.set(targetIndex, lowValue);
                    targetIndex = lowIndex;
                }
                // 同最高索引
                if (highIndex <= lowIndex) {
                    targetList.set(targetIndex, targetValue);
                    break;
                }
                // 最小索引++
                lowIndex++;

            }
            // 找到目标值所在索引后,该索引就将序列分成了两部分,左边的小于目标值,右边的大于目标值
            List<Integer> smallList = targetList.subList(0, targetIndex);
            List<Integer> bigList = targetList.subList(targetIndex+1, targetList.size());
            // 再将两个序列再次进行排序
            second(smallList);
            second(bigList);
        }
    }

  数据结构与算法 最新文章
【力扣106】 从中序与后续遍历序列构造二叉
leetcode 322 零钱兑换
哈希的应用:海量数据处理
动态规划|最短Hamilton路径
华为机试_HJ41 称砝码【中等】【menset】【
【C与数据结构】——寒假提高每日练习Day1
基础算法——堆排序
2023王道数据结构线性表--单链表课后习题部
LeetCode 之 反转链表的一部分
【题解】lintcode必刷50题<有效的括号序列
上一篇文章      下一篇文章      查看所有文章
加:2022-04-30 08:55:25  更:2022-04-30 08:58:21 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/26 5:38:06-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码