zoukankan      html  css  js  c++  java
  • 1078. Occurrences After Bigram

    Given words first and second, consider occurrences in some text of the form "first second third", where second comes immediately after first, and third comes immediately after second.

    For each such occurrence, add "third" to the answer, and return the answer.

    Example 1:

    Input: text = "alice is a good girl she is a good student", first = "a", second = "good"
    Output: ["girl","student"]
    

    Example 2:

    Input: text = "we will we will rock you", first = "we", second = "will"
    Output: ["we","rock"]
    

    Note:

    1. 1 <= text.length <= 1000
    2. text consists of space separated words, where each word consists of lowercase English letters.
    3. 1 <= first.length, second.length <= 10
    4. first and second consist of lowercase English letters.
    class Solution {
        public String[] findOcurrences(String text, String first, String second) {
            List<String> list = new ArrayList();
            String[] str = text.split(" ");
            for(int i = 0; i < str.length - 2; i++) {
                if(str[i].equals(first) && str[i + 1].equals(second)) list.add(str[i + 2]);
            }
            String[] res = new String[list.size()];
            int i = 0;
            for(String s: list) res[i] = list.get(i++);
            return res;
        }
    }
    class Solution {
        public String[] findOcurrences(String text, String first, String second) {
            List<String> list = new ArrayList();
            String[] str = text.split(" ");
            for(int i = 0; i < str.length - 2; i++) {
                if(str[i].equals(first) && str[i + 1].equals(second)) list.add(str[i + 2]);
            }
            return list.toArray(new String[0]);
        }
    }

    嗯?list.toArray()奇淫巧计

  • 相关阅读:
    【转】umount 的时候报错:device is busy
    【转】linux shell 的tr命令
    给bash的提示符设置不同的颜色
    备份系统时候出现错误
    [转]Xen 的漫漫人生路
    linux/screen的指令
    扩大centos镜像的硬盘空间
    ASP.NET Web API学习资源
    svn make a tag
    query多选下拉框插件 jquerymultiselect
  • 原文地址:https://www.cnblogs.com/wentiliangkaihua/p/13496027.html
Copyright © 2011-2022 走看看