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

140. Word Break II

时间:2016-05-24 10:24:43      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:

   /*
    * 140. Word Break II
    * 2016-5-23 by Mingyang
    * 这个题目用backtracking也可以,注意这里的string累积的形式
    * newItem就是积累的String
    */
    public ArrayList<String> wordBreak(String s, Set<String> dict) {
        ArrayList<String> res = new ArrayList<String>();
        if (s == null || s.length() == 0)
            return res;
        helper(s, dict, 0, "", res);
        return res;
    }
    private void helper(String s, Set<String> dict, int start, String item,
            ArrayList<String> res) {
        if (start >= s.length()) {
            res.add(item);
            return;
        }
        StringBuilder str = new StringBuilder();
        for (int i = start; i < s.length(); i++) {
            str.append(s.charAt(i));
            if (dict.contains(str.toString())) {
                String newItem = item.length() > 0 ? (item + " " + str
                        .toString()) : str.toString();
                helper(s, dict, i + 1, newItem, res);
            }
        }
    }

 

140. Word Break II

标签:

原文地址:http://www.cnblogs.com/zmyvszk/p/5522477.html

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