1048. Longest String Chain

题目:

Given a list of words, each word consists of English lowercase letters.

Let's say word1 is a predecessor of word2 if and only if we can add exactly one letter anywhere in word1 to make it equal to word2.  For example, "abc" is a predecessor of "abac".

word chain is a sequence of words [word_1, word_2, ..., word_k] with k >= 1, where word_1 is a predecessor of word_2word_2 is a predecessor of word_3, and so on.

Return the longest possible length of a word chain with words chosen from the given list of words.

 

Example 1:

Input: ["a","b","ba","bca","bda","bdca"]
Output: 4
Explanation: one of the longest word chain is "a","ba","bda","bdca".

解法:

这题看上去和LIS差不多,但是要注意题意里的predecessor的含义是,only add one letter。清楚了这一点,就可以分析出状态转移方程。

对于第n个字符串来说,需要做的是遍历该字符串中的每一个char,去掉该char之后组成一个新字符串。将这个新字符串与前n-1个字符串比较,如果能对应上,就在对应上的基础上+1。

这里也可以用传统的dp方法,创建一个dp数组,每次循环更新。但是由于需要不停地比对字符串,循环过多。所以可以采用HASHMAP来存储。需要注意的是,在hashmap取对应的key时,使用getOrdefault方法,表示取不到该字符串时返回长度0。

 

    /*
     * 1048. Longest String Chain
     * https://leetcode.com/problems/longest-string-chain/
     * 看上去和LIS差不多。注意题意是only add exactly one letter!!
     */
    
    public int longestStrChain(String[] words) {
        if(words == null || words.length == 0){
            return 0;
        }
        int res = 0;
        HashMap<String,Integer> dp = new HashMap<>();
        //注意这种写法!!
        Arrays.sort(words,(a,b) -> a.length() - b.length());
        for(int i = 0; i < words.length ; i++) {
        	int max = 0;
        	for(int j = 0 ;j < words[i].length();j++) {
        		String prev = words[i].substring(0,j) + words[i].substring(j+1);
        		max = Math.max(max, dp.getOrDefault(prev, 0) + 1);
                //System.out.println(prev + "->" + words[i] );
        	}
        	dp.put(words[i], max);
        	res = Math.max(res, max);
        }
        return res;
    }

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
这段代码是一个区块链的实现中的获取最长链的函数,其主要思路是遍历所有区块,从每个区块出发,向前查找每个区块的前一个区块是否在当前区块链中存在,并且不是根节点'root'。如果找到了前一个区块,则将其加入到当前链表的头部。最终,如果当前链表的长度大于已经找到的最长链长度,则将当前链表作为最长链。 这个函数可能需要一些解释,下面是对代码每行的解释: 1. `longestChain () {`: 定义一个函数叫做`longestChain`。 2. `let longestChain = [];`: 初始化一个最长链为空数组。 3. `for (const [hash, block] of this.blocks) {`: 遍历所有区块,使用解构赋值获取当前区块的哈希值和区块本身。 4. `const chain = [block];`: 初始化一个当前链表,将当前区块加入其中。 5. `let previousBlock = block;`: 初始化一个前一个区块,将其赋值为当前区块。 6. `while (this.blocks.has(previousBlock.previousHash) && (this.blocks.has(previousBlock.previousHash)).has !== 'root') {`: 在当前区块链中查找前一个区块,如果找到且前一个区块不是根节点'root',则进入循环。 7. `previousBlock = this.blocks.get(previousBlock.previousHash);`: 将前一个区块作为当前区块,继续向前查找。 8. `chain.unshift(previousBlock);`: 将前一个区块加入到当前链表的头部。 9. `if (chain.length > longestChain.length) {`: 判断当前链表是否比已经找到的最长链更长。 10. `longestChain = chain;`: 如果当前链表更长,则将其作为最长链。 11. `console.log(longestChain)`: 输出最长链到控制台。 12. `return longestChain;`: 返回最长链。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值