摘要:
1 // maxofArray.cpp : Defines the entry point for the console application. 2 // 3 4 #include "stdafx.h" 5 #include 6 using namespace std; 7 #define N 11 8 int max_sub_array(int &s,int &e,int * a); 9 int max_sub_array1(int &s,int &e,int * a); 10 int max_sub_array2(int &s 阅读全文