zoukankan      html  css  js  c++  java
  • 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 }
  • 相关阅读:
    [bzoj 2151]种树(贪心)
    [bzoj 1026]windy数(数位DP)
    [BZOJ2038]小Z的袜子(莫队算法)
    spark调优
    从底层谈WebGIS 原理设计与实现(一):开篇
    css兼容性记录
    H5新标签
    AMD 与CMD
    rem 响应 js函数
    SVN服务器搭建和使用(一)
  • 原文地址:https://www.cnblogs.com/EdwardLiu/p/5062381.html
Copyright © 2011-2022 走看看