//http://acm.hdu.edu.cn/showproblem.php?pid=1003 //最大子序列和 分治法 天勤 #include <iostream> using namespace std; void getCrossMax(int arr[],int &L,int mid,int &R,int &max){ int maxCross = 0...