题目描述 Farmer John is an astounding accounting wizard and has realized he might run out of money to run the farm. He has already calculated and recorded the exact amount of money (1 ≤ moneyi ≤ 10,000) that he will need to spend each day over the next N…
数据结构—Kruskal最小生成树
原理:参考趣学数据结构
代码:
快速排序:
#pragma once
#define elemType int
typedef struct vER {elemType u;elemType v;int weight;
}VER;
int quickSort(VER a[], int l, int h) {//快速排序int i l, j…
数据结构—排序算法的总结
分类
冒泡排序,时间复杂度O(n x n),空间复杂度O(1),稳定 简单选择排序,时间复杂度O(n x n),空间复杂度O(1),不稳定 希尔排序,时间复杂度O(n^1.3),空间复杂度O(1),不…