摘要: 题目表述:给定两个排序后的数组A和数组B,其中A的末端有足够的缓冲空间容纳B。编写一个方法,将B合并入A并排序 #include<stdio.h> void combine(int *a,int *b); int len(int *a); int main() { int a[100]={1,4,9 阅读全文
posted @ 2020-02-24 18:44 美好事物 阅读(316) 评论(0) 推荐(0) 编辑