58同城 愚人节笔试题解

编程题题解,大佬帮忙看看有没有错,或者优化办法。
题目比较啰嗦,就记住了大概。
编程题1:计算数组最大的连续子序列的和;
如:{14,-2,4,-3,5,7,2,-39,22},和最大子序列是{14,-2,4,-3,5,7,2},返回27
public class Main01 {
public static void main(String args[]){
int [] scoreArr= {14,-2,4,-3,5,7,2,-39,22};
System.out.println(getIntInfoMax(scoreArr));
}
public static int getIntInfoMax(int [] scoreArr){
int result =0;
for(int i = 0;i<scoreArr.length;i++){ int max=0; int sum=0; for (int j =i;j<scoreArr.length;j++){ sum+=scoreArr[j]; if(sum>max){
max = sum;
}
}
if(max>result){
result =max;
}
}
return result;
}
}

编程题2:输入一个字符串,输入整数n,找出长度为n的相同字符构成的子串。
如:
输入
字符串“abbbccccddeeffffaaaddzzz”,整数3
输出
(1,3,bbb)
(16,18,aaa)
(21,23,zzz)
public class Main2 {
public static void main(String args[]) {
String str = "abbbccccddeefffaaaddzzzz";
int n = 3;
TreeMap<Integer,String> map= getResult(str,n);
for (int i :map.keySet()){
System.out.println("("+i+","+(i+n-1)+","+map.get(i)+")");
}
}
public static TreeMap<Integer, String> getResult(String str, int n) {
TreeMap<Integer, String> map = new TreeMap<>();
int sum;
for (int i = 0; i <= str.length()-n; i+=sum) {
sum=0;
String string = "";
for (int j = i; j < str.length(); j++) {
if (str.charAt(j) == str.charAt(i)) {
sum++;
string+=str.charAt(i);
}
else {
break;
}
}
if(sum==n){
map.put(i,string);
}
}
return map;
}
}

#笔试题目#
全部评论
我还以为是求出现给定次数的子串呢。。。。。。
点赞 回复 分享
发布于 2018-04-01 22:52
两题都可以在O(n)时间复杂度内解决
点赞 回复 分享
发布于 2018-04-01 22:52
真实愚人节
点赞 回复 分享
发布于 2018-04-02 00:17
https://leetcode.com/problems/maximum-subarray/description/ 第一题是不是这个?
点赞 回复 分享
发布于 2018-04-02 01:57

相关推荐

头像
11-06 10:58
已编辑
门头沟学院 嵌入式工程师
双非25想找富婆不想打工:哦,这该死的伦敦腔,我敢打赌,你简直是个天才,如果我有offer的话,我一定用offer狠狠的打在你的脸上
点赞 评论 收藏
分享
不愿透露姓名的神秘牛友
11-26 18:54
说等下个版本吧的发呆爱好者很贪睡:佬最后去了哪家呀
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务