算法基础笔记
基础
位运算
1 | public class bit_operation { |
选择排序
1 | public static void selectSort(int[] arr) { |
1 | public static void bubbleSort(int[] arr) { |
}
}
1 |
数组 链表 跳表
数组是在内存中开辟出一段连续的空间
跳表是为了解决链表的缺点 空间换时间
评论
1 | public class bit_operation { |
1 | public static void selectSort(int[] arr) { |
1 | public static void bubbleSort(int[] arr) { |
}
}
1 |
数组是在内存中开辟出一段连续的空间
跳表是为了解决链表的缺点 空间换时间