首页 > 其他 > 详细

524 Longest Word in Dictionary through Deleting

时间:2018-04-22 21:13:34      阅读:221      评论:0      收藏:0      [点我收藏+]

详见:https://leetcode.com/problems/longest-word-in-dictionary-through-deleting/description/

C++:

class Solution {
public:
    string findLongestWord(string s, vector<string>& d) 
    {
        sort(d.begin(), d.end(), [](string a, string b){
            if (a.size() == b.size())
            {
                return a < b;
            }
            return a.size() > b.size();
        });
        for (string str : d)
        {
            int i = 0;
            for (char c : s) 
            {
                if (i < str.size() && c == str[i]) 
                {
                    ++i;
                }
            }
            if (i == str.size())
            {
                return str;
            }
        }
        return "";
    }
};

 参考:http://www.cnblogs.com/grandyang/p/6523344.html

524 Longest Word in Dictionary through Deleting

原文:https://www.cnblogs.com/xidian2014/p/8909226.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!