2022年1月20日
摘要: 动态分配内存可以使的程序在内存中更加灵活地使用 动态分配数组使用new函数 1 #include <iostream> 2 constexpr auto N = 5; 3 using namespace std; 4 void insert_sort(int a[], int n) //插入排序算法 阅读全文
posted @ 2022-01-20 17:08 咫尺流云 阅读(67) 评论(0) 推荐(0)