关注
那个求最长上升序列长度的 写了本地过了 还有那个双生字符串,就是求循环字符的匹配 一直卡在数据的格式输入 package zijie;
import java.util.ArrayList;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
int n;
int t;
ArrayList<ArrayList<String>> all_str = new ArrayList<ArrayList<String>>();
Scanner sc1 = new Scanner(System.in);
Scanner sc2 = new Scanner(System.in);
t = sc1.nextInt();
for(int i = 0; i < t; i++) {
// 这里想打人
n = Integer.valueOf(sc1.nextLine());
ArrayList<String> one_str = new ArrayList<>();
for(int j = 0; j < n + 1; j++) {
String str = sc1.nextLine();
one_str.add(str);
}
// sc1.nextLine();
System.out.println(one_str);
all_str.add(one_str);
}
sc1.close();
for(int i = 0; i < t; i++) {
ArrayList<String> ar_str = new ArrayList<>();
System.out.println(ar_str);
if(judge(ar_str) == true) {
System.out.println("Yeah");
}else {
System.out.println("Sad");
}
}
}
private static boolean judge(ArrayList<String> ar_str) {
int n = ar_str.size();
for(int i = 0; i < n; i++) {
for(int j = i; j < n; j++) {
return to_judge(ar_str.get(i), ar_str.get(j));
}
}
return false;
}
private static boolean to_judge(String string, String string2) {
String add_str = string + string;
System.out.println(add_str );
if(add_str.indexOf(string2) != -1) {
return true;
}
StringBuffer str_re = new StringBuffer(add_str).reverse();
if(str_re.indexOf(string2) == -1) {
return false;
}else {
return true;
}
}
}
/*
*
*
3
2
helloworld
hdlrowolle
2
helloworld
worldhello
2
abcde
acbde
*/
查看原帖
点赞 评论
相关推荐
点赞 评论 收藏
分享
牛客热帖
正在热议
# 25届秋招总结 #
583346次浏览 5960人参与
# 简历被挂麻了,求建议 #
2615066次浏览 34100人参与
# 百融云创开奖 #
70352次浏览 709人参与
# 被同事甩锅了怎么办 #
6895次浏览 61人参与
# 机械人与华为的爱恨情仇 #
76618次浏览 699人参与
# 你都收到了哪些公司的感谢信? #
3668308次浏览 32139人参与
# 大家都开始春招面试了吗 #
440685次浏览 5456人参与
# 如何确定求职岗位 #
376202次浏览 4840人参与
# AI了,我在打一种很新的工 #
22388次浏览 452人参与
# 你觉得实习只能是打杂吗? #
83812次浏览 598人参与
# 参加完秋招的机械人,还参加春招吗? #
21630次浏览 245人参与
# 牛客帮帮团来啦!有问必答 #
2416759次浏览 24904人参与
# 机械制造笔面经 #
2058938次浏览 30177人参与
# 当下环境,你会继续卷互联网,还是看其他行业机会 #
43784次浏览 371人参与
# 国央企薪资爆料 #
36042次浏览 281人参与
# 如果可以选,你最想去哪家公司 #
1259170次浏览 16202人参与
# 创作灵感 #
88164次浏览 1422人参与
# 入职以后才知道的校招谎言 #
47779次浏览 238人参与
# 投了多少份简历才上岸 #
200981次浏览 2380人参与
# 大厂无回复,继续等待还是奔赴小厂 #
57419次浏览 361人参与
# 找工作,你会甘心进小厂还是猛冲大厂 #
163368次浏览 1877人参与