版权声明:From Jomly Kellenda Nakamura https://blog.csdn.net/sinat_23030553/article/details/83409480 程序员:What When Where How Who Why;架构师:What Why Where When Who How;设计师:What Who Why How When Where。 面向对象What: 面向对象思想是相对于面向过程思想而言的,不拘泥于实现过程,不面对拆分的细节,直接面对一个整体,就是面向对象。把一组有着共同行为模式的人、共同属性特征的物、共同步骤流程的事归纳抽象为类。把类分解具象,就可以得到对象。  
查看全文
//sort the A[p..q] in an ascend order
//tmp is needed
void merge(int *A,int *tmp,int p,int r,int q)
{
//create the left and right array from A
//left A[p..r],right A[r+1..q]
int *L=&A[p];
int *R=&A[r+1];
int i=0,j=0,t=0;
//merge&n
查看全文