摘要:
cpp] view plaincopyprint? class Solution { public: int maxSubArray(int A[], int n) { // Start typing your C/C++ solution below // DO NOT write int main() function int sum = A[0], max = A[0]; for (int i = 1; i max ? sum : max; ... 阅读全文
posted @ 2014-02-12 11:24
kelly_go
阅读(136)
评论(0)
推荐(0)
浙公网安备 33010602011771号