## algo_sort ### 接口 ```c void BubbleSort(void *arr, int size, uint8_t type); void SelectionSort(void *arr, int size, uint8_t type); void InsertionSort(void *arr, int size, uint8_t type); ```