数据结构与算法
SunsPlanter
本博客完全为个人学习之用,本人不对任何代码、描述的正确性作任何保证。
展开
-
选择排序-selection sort
Algorithm’ thought:Therer is a array with x number.First round find a minimum number,move it out of array,and next round make the ramaining number compare,原创 2021-10-11 11:46:21 · 75 阅读 · 0 评论 -
二分法查找--Dichotomy search
二分法要求被查求的元素有序原创 2021-10-22 15:18:48 · 126 阅读 · 0 评论 -
冒泡排序。
public class aaa { public static void main(String[] args) { int count=0; int[] arr = {4,8,2,9,43,65,2}; for(int i = arr.length-1;i > 0;i--) { for(int j = 0;j < i;j++) { //Despite exchange happen or not,comparison times plus 1原创 2021-09-18 12:14:42 · 74 阅读 · 0 评论