参考代码:
import java.util.Scanner; public class Main { static String in; static int index = -1; public static void main(String[] args) { Scanner scanner = new Scanner(System.in); in = scanner.next(); System.out.print(dfs()); } public static int dfs() { int max = 0; int current = 0; while(index < in.length() - 1) { index++; if(in.charAt(index) == 'x') current++; else if(in.charAt(index) == '(') current += dfs(); else if(in.charAt(index) == ')') break; else if(in.charAt(index) == '|') { max = Math.max(current, max); current = 0; } } return Math.max(max, current); } }
0.0分
5 人评分
母牛的故事 (C语言代码)浏览:1408 |
C语言训练-斐波纳契数列 (C语言代码)浏览:3015 |
C语言程序设计教程(第三版)课后习题8.2 (Java代码)浏览:2287 |
钟神赛车 (C++代码)浏览:905 |
小明A+B (C语言代码)浏览:1316 |
printf基础练习2 (C语言代码)浏览:955 |
C语言程序设计教程(第三版)课后习题10.7 (C语言代码)浏览:568 |
WU-蓝桥杯算法提高VIP-勾股数 (C++代码)浏览:1684 |
WU-图形输出 (C++代码)浏览:836 |
C语言程序设计教程(第三版)课后习题6.2 (C语言代码)浏览:751 |