顺序存储 | 链式存储 |
---|---|
数组 | 链表 |
数据元素放在地址连续的存储单元中 | 数据元素存储在任意的存储单元里 |
数据元素在存储器中的相对位置 | 结点中指针 |
逻辑相邻 | 逻辑相邻 |
物理相邻 | 物理不一定相邻 |
顺序表 | 数组 |
---|---|
逻辑结构角度 | 物理存储角度 |
顺序表 是由数组组成的线性表 |
数组 | 链表 |
---|---|
连续内存分配 | 动态内存分配 |
在栈上分配内存,自由度小【栈必须连续且固定大小,后进先出的取】 | 在堆上分配内存,自由度大【堆是直接随意存取】 |
事先固定数组长度,不支持动态改变数组大小 | 支持动态增加或删除元素 |
数组元素增加时,有可能会数组越界;数组元素减少时,会造成内存浪费;数组增删时需要移动其它元素 | 使用malloc或者new来申请内存,不用时使用free或者delete来释放内存 |
下标访问,访问效率高 | 访问需要从头遍历,访问效率低 |
数组的大小是固定的,所以存在访问越界的风险 | 只要可以申请得到链表空间,链表就无越界风险 |
二叉树是一种常见的树状数据结构,它由节点组成,每个节点最多有两个子节点,分别称为左子节点和右子节点。
特点
B树 | B+树 |
---|---|
key和value都在节点上。并且叶子节点之间没有关系 | 非叶子节点没有存value。叶子节点之间有双向指针,有引用链路。 |
因为B树的key和value都存在节点上,因此在查找过程中,可能不用查找的叶子节点就找到了对应的值。 | B+树需要查找到叶子节点,才能获取值 |
比较相邻的元素。如果第一个比第二个大,就交换他们两个。
对每一对相邻元素做同样的工作,从开始第一对到结尾的最后一对。在这一点,最后的元素应该会是最大的数。
针对所有的元素重复以上的步骤,除了最后一个。
持续每次对越来越少的元素重复上面的步骤,直到没有任何一对数字需要比较。
package one;
public class Xu {
public int[] sort_MAOPAO(int[] nums) {
if (nums.length == 0 || nums.length == 1) return nums;
for (int i = 0; i < nums.length; i++) {
for (int j = 0; j < nums.length - 1 - i; j++) {
if (nums[j] > nums[j + 1]) {
int temp = nums[j + 1];
nums[j + 1] = nums[j];
nums[j] = temp;
}
}
}
return nums;
}
public static void main(String[] args) {
Xu xu = new Xu();
int[] array = {11, 33, 44, 22, 55, 99, 88, 66, 77};
System.out.println("从小到大排序后的结果是:");
for(int i=0;i<xu.sort_MAOPAO(array).length;i++)
System.out.print(xu.sort_MAOPAO(array)[i]+" ");
}
}
public static int[] sort_CHAOPAI(int[] nums) {//将最后一个元素作为插入元素与有序数列比较后插入正确位置
if (nums.length == 0 || nums.length == 1) return nums;
for (int i = 0; i < nums.length; i++) {//i是作为每一组比较数据的最后一个元素
for (int j = i; j > 0; j--) {
if (nums[j - 1] > nums[j]) {
int temp = nums[j];
nums[j] = nums[j - 1];
nums[j - 1] = temp;
}
}
}
return nums;
}
1.首先在未排序序列中找到最小(大)元素,存放到排序序列的起始位置。
2.再从剩余未排序元素中继续寻找最小(大)元素,然后放到已排序序列的末尾。
3.重复第二步,直到所有元素均排序完毕。
public static int[] sort_XUANPAI(int[] nums) {
if (nums.length == 0 || nums.length == 1) return nums;
for (int i = 0; i < nums.length; i++) {
int minIndex = i;//每次循环假设第一个数最小
for (int j = i; j < nums.length; j++) {
if (nums[minIndex] > nums[j]) {//找到剩余未排序元素中找到最小元素,交换
int temp = nums[minIndex];
nums[minIndex] = nums[j];
nums[j] = temp;
}
}
}
return nums;
}
public static void quickSort(int[] nums, int startIndex, int endIndex) {
if(startIndex >= endIndex){//只剩一个元素不用处理直接结束。
return;
}
int val = nums[startIndex];//基准值
int left = startIndex;//比基准值小的放左边
int right = endIndex;//比基准值大的放右边
while (left < right) {
while (left < right && nums[right] > val) right--;//右指针左移,遇到比基准值小的数
if (left < right) {
nums[left++] = nums[right];
}
while (left < right && nums[left] < val) left++;//做左指针右移,遇到比基准值大的数
if (left < right) {
nums[right--] = nums[left];
}
}
//最后将基准与left和right相等位置的数字交换
nums[left] = val;
//递归调用左半数组
quickSort(nums, startIndex, left - 1);
//递归调用右半数组
quickSort(nums, left + 1, endIndex);
}
public static void main (String[]args){
Random rd = new Random();
int[] num = new int[10];
for (int i = 0; i < num.length; i++) {
num[i] = rd.nextInt(100) + 1;
}
System.out.println(Arrays.toString(num));
quickSort(num,0,num.length-1);
System.out.println(Arrays.toString(num));
// for (int i = 0; i < xu.sort_MAOPAO(array).length; i++)
// System.out.print(xu.sort_MAOPAO(array)[i] + " ");
}