ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

524. Longest Word in Dictionary through Deleting

2021-02-23 12:58:34  阅读:286  来源: 互联网

标签:count return string Dictionary 匹配 524 Word 字典 size


题目:

Given a string and a string dictionary, find the longest string in the dictionary that can be formed by deleting some characters of the given string. If there are more than one possible results, return the longest word with the smallest lexicographical order. If there is no possible result, return the empty string.

Example 1:

Input:
s = "abpcplea", d = ["ale","apple","monkey","plea"]

Output: 
"apple"

 

 

Example 2:

Input:
s = "abpcplea", d = ["a","b","c"]

Output: 
"a"

 

Note:

  1. All the strings in the input will only contain lower-case letters.
  2. The size of the dictionary won't exceed 1,000.
  3. The length of all the strings in the input won't exceed 1,000.

 

 

 

 

思路:

思路比较基础,一个一个比较是否匹配,然后找出长度最长且字典序最小的字符串即可。首先匹配,用双指针,一个 i 遍历原数组,一个 j 指向当前比较的字典内数组,如果字符匹配,则 j 向后一格,如果 j 走到了终点则说明可以匹配,这里为了方便另写了一个函数用于匹配。然后有个小点是处理字典序,因为只有长度相等时才需要进行字典序排序,因此如果长度相等时,直接进行比较即可,不需要对原给定字典进行排序。

 

 

 

 

代码:

class Solution {
public:
    string findLongestWord(string s, vector<string>& d) {
        int count=0;
        string ans="";
        for(auto i:d)
        {
            if(check(s,i))
            {
                if(i.size()>count || (i.size()==count&&i<ans))
                {
                    count=i.size();
                    ans=i;
                }
            }
        }
        return ans;
    }
private:
    bool check(string &s, string &t)
    {
        int j=0;
        for(int i=0;i<s.size();i++)
        {
            if(s[i]==t[j])
            {
                j++;
                if(j==t.size())
                    return true;
            }
        }
        return false;
    }
};

标签:count,return,string,Dictionary,匹配,524,Word,字典,size
来源: https://blog.csdn.net/weixin_49991368/article/details/113976984

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有