• Leetcode: Shortest Word Distance III


    This is a follow up of Shortest Word Distance. The only difference is now word1 could be the same as word2.
    
    Given a list of words and two words word1 and word2, return the shortest distance between these two words in the list.
    
    word1 and word2 may be the same and they represent two individual words in the list.
    
    For example,
    Assume that words = ["practice", "makes", "perfect", "coding", "makes"].
    
    Given word1 = “makes”, word2 = “coding”, return 1.
    Given word1 = "makes", word2 = "makes", return 3.
    
    Note:
    You may assume word1 and word2 are both in the list.

    还是采取Shortest Word Distance I 的方法

    只不过判断 minDis的时候加入判断,如果 i==j,minDis = minDis

     1 public class Solution {
     2     public int shortestWordDistance(String[] words, String word1, String word2) {
     3         int minDis = Integer.MAX_VALUE;
     4         int i=-1, j=-1;
     5         for (int k=0; k<words.length; k++) {
     6             if (words[k].equals(word1)) {
     7                 i = k;
     8                 if (i!=-1 && j!=-1) 
     9                     minDis = Math.min(minDis, Math.abs(i-j));
    10             }
    11             if (words[k].equals(word2)) {
    12                 j = k;
    13                 if (i!=-1 && j!=-1) 
    14                     minDis = (i==j)? minDis : Math.min(minDis, Math.abs(i-j));
    15             }
    16         }
    17         return minDis;
    18     }
    19 }
  • 相关阅读:
    客户(项目)经理应具备那些基本心理素质
    js 添加数组 删除数组
    c# ifram 刷新父页面
    [转].Net ajax检测用户名是否重复
    js 自动执行方法
    js 层 分页显示选择用户名
    c# Cookie的操作
    c# 取IE地址值
    js 弹出层无刷新分页
    iframe 无边框
  • 原文地址:https://www.cnblogs.com/EdwardLiu/p/5062381.html
Copyright © 2020-2023  润新知