摘要:
const的修饰 1.const修饰指针 int b = 1; const int * p ; //这是常量指针 //指针指向的值不可以改变,但是指针的指向可以改变 //*p = 20;错误 //p = &b;正确 2.const修饰常量 int b = 1; int * const p ; //这 阅读全文
摘要:
**归并排序代码** //mergeSort #include<stdio.h> #include<stdlib.h> //合并 void merge_Sort(int arr[], int L, int M, int R) { int left_size = M - L; int right_si 阅读全文