码迷,mamicode.com
首页 > 其他好文 > 详细

FB面经 Prepare: Make Parentheses valid

时间:2017-03-17 00:29:58      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:style   param   code   out   面经   log   logs   stringbu   static   

给一组括号,remove最少的括号使得它valid

从左从右各scan一次

 1 package fb;
 2 
 3 public class removeParen {
 4     
 5     public static String fix(String str) {
 6         StringBuffer res = new StringBuffer(str);
 7         int l = 0, r = 0;
 8         int i = 0;
 9         while (i < res.length()) {
10             if (res.charAt(i) == ‘(‘) l++;
11             else {
12                 if (l <= r) {
13                     res.deleteCharAt(i);
14                     i--;
15                 }
16                 else {
17                     r++;
18                 }
19             }
20             i++;
21         }
22         
23         l = 0;
24         r = 0;
25         i = res.length()-1;
26         while (i >= 0) {
27             if (res.charAt(i) == ‘)‘) r++;
28             else {
29                 if (l >= r) {
30                     res.deleteCharAt(i);
31                 }
32                 else {
33                     l++;
34                 }
35             }
36             i--;
37         }
38         
39         return res.toString();
40     }
41     
42 
43     /**
44      * @param args
45      */
46     public static void main(String[] args) {
47         // TODO Auto-generated method stub
48         String res = fix(")((())(");
49         System.out.println(res);
50     }
51 
52 }

 

FB面经 Prepare: Make Parentheses valid

标签:style   param   code   out   面经   log   logs   stringbu   static   

原文地址:http://www.cnblogs.com/EdwardLiu/p/6562154.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!