Leetcode-243 Shortest Word Distance

題目描述

Given a list of words and two words word1 and word2, return the shortest distance between these two words in the list.

Example

Assume that words=["practice", "makes", "perfect", "coding", "makes"]
Given word1 = “coding”, word2 = “practice”, return 3.
Given word1 = "makes", word2 = "coding", return 1.

Note

You may assume that word1 does not equal to word2, and word1 and word2 are both in the list.


分析

這道題洛退,首先是遍歷一遍數(shù)組,我們把出現(xiàn)word1word2的給定單詞所有出現(xiàn)的位置分別存入兩個(gè)數(shù)組里红淡,然后我們對(duì)這兩個(gè)數(shù)組進(jìn)行兩兩比較更新結(jié)果不狮,代碼如下:

解法1

C++

class Solution {
    int shortestDistance(vector<string>& words, string word1, string word2) {
        vector<int> idx1, idx2;
        int res = INT_MAX;
        for (int i = 0; i < words.size(); i++) {
            if (words[i] == word1) idx1.push_back(i);
            else if (words[i] == word2) idx2.push_back(i);
        }
        for (int i = 0; i < idx1.size(); ++i) {
            for (int j = 0; j < idx2.size(); ++j) {
                res = min(res, abs(idx1[i] - idx2[j]));
            }
        }
        return res;
    }
}

Swift

func shortestDistance(_ words: [String], word1: String, word2: String) -> Int {
    var idx1: [Int] = [Int](), idx2 = [Int]()
    var res = Int.max
    for i in 0..<words.count {
        if words[i] == word1 { idx1.append(i) }
        else if words[i] == word2 { idx2.append(i) }
    }
    for i in 0..<idx1.count {
        for j in 0..<idx2.count {
            res = min(res, abs(idx1[i] - idx2[j]))
        }
    }
    return res
}
print(shortestDistance(["practice", "makes", "perfect", "coding", "makes"], word1: "makes", word2: "coding"))

解法2

上面的那種方法并不高效,我們其實(shí)需要遍歷一次數(shù)組就可以了在旱,我們用兩個(gè)變量p1, p2初始化為-1摇零,然后我們遍歷數(shù)組,遇到單詞1桶蝎,就將其位置存在p1里驻仅,若遇到單詞2,就將其位置存在p2里登渣,如果此時(shí)p1, p2都不為-1了噪服,那么我們更新結(jié)果,參見(jiàn)代碼如下:

C++

class Solution {
public:
    int shortestDistance(vector<string>& words, string word1, string word2) {
        int p1 = -1, p2 = -1, res = INT_MAX;
        for (int i = 0; i < words.size(); ++i) {
            if (words[i] == word1) p1 = i;
            else if (words[i] == word2) p2 = i;
            if (p1 != -1 && p2 != -1) res = min(res, abs(p1 - p2));
        }
        return res;
    }
};

Swift

func shortestDistance1(_ words: [String], word1: String, word2: String) -> Int {
    var idx1: Int = -1, idx2 = -1
    var res = Int.max
    for i in 0..<words.count {
        if words[i] == word1 { idx1 = i}
        else if words[i] == word2 { idx2 = i}
        if idx1 != -1 && idx2 != -1 {
            res = min(res, abs(idx1 - idx2))
        }
    }
    return res
}
print(shortestDistance1(["practice", "makes", "perfect", "coding", "makes"], word1: "coding", word2: "practice"))
// Print "3"

解法3

下面這種方法只用一個(gè)輔助變量idx胜茧,初始化為-1粘优,然后遍歷數(shù)組,如果遇到等于兩個(gè)單詞中的任意一個(gè)的單詞呻顽,我們?cè)诳?code>idx是否為-1雹顺,若不為-1,且指向的單詞和當(dāng)前遍歷到的單詞不同廊遍,我們更新結(jié)果嬉愧,參見(jiàn)代碼如下:

C++

class Solution {
public:
    int shortestDistance(vector<string>& words, string word1, string word2) {
        int idx = -1, res = INT_MAX;
        for (int i = 0; i < words.size(); ++i) {
            if (words[i] == word1 || words[i] == word2) {
                if (idx != -1 && words[idx] != words[i]) {
                    res = min(res, i - idx);
                }
                idx = i;
            }
        }
        return res;
    }
};

Swift

func shortestDistance2(_ words: [String], word1: String, word2: String) -> Int {
    var idx = -1
    var res = Int.max
    for i in 0..<words.count {
        if words[i] == word1 || words[i] == word2 {
            if idx != -1 && words[i] != words[idx] {
                res = min(res, abs(i - idx))
            }
            idx = i
        }
    }
    return res
}
print(shortestDistance2(["practice", "makes", "perfect", "coding", "makes"], word1: "coding", word2: "practice"))
// Prints "3"

參考資料:

https://leetcode.com/discuss/50234/ac-java-clean-solution
https://leetcode.com/discuss/61820/java-only-need-to-keep-one-index

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市喉前,隨后出現(xiàn)的幾起案子没酣,更是在濱河造成了極大的恐慌,老刑警劉巖卵迂,帶你破解...
    沈念sama閱讀 212,454評(píng)論 6 493
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件裕便,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡狭握,警方通過(guò)查閱死者的電腦和手機(jī)闪金,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,553評(píng)論 3 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái),“玉大人哎垦,你說(shuō)我怎么就攤上這事囱嫩。” “怎么了漏设?”我有些...
    開(kāi)封第一講書(shū)人閱讀 157,921評(píng)論 0 348
  • 文/不壞的土叔 我叫張陵墨闲,是天一觀的道長(zhǎng)。 經(jīng)常有香客問(wèn)我郑口,道長(zhǎng)鸳碧,這世上最難降的妖魔是什么? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 56,648評(píng)論 1 284
  • 正文 為了忘掉前任犬性,我火速辦了婚禮瞻离,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘乒裆。我一直安慰自己套利,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,770評(píng)論 6 386
  • 文/花漫 我一把揭開(kāi)白布鹤耍。 她就那樣靜靜地躺著肉迫,像睡著了一般。 火紅的嫁衣襯著肌膚如雪稿黄。 梳的紋絲不亂的頭發(fā)上喊衫,一...
    開(kāi)封第一講書(shū)人閱讀 49,950評(píng)論 1 291
  • 那天,我揣著相機(jī)與錄音杆怕,去河邊找鬼族购。 笑死,一個(gè)胖子當(dāng)著我的面吹牛陵珍,可吹牛的內(nèi)容都是我干的联四。 我是一名探鬼主播,決...
    沈念sama閱讀 39,090評(píng)論 3 410
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼撑教,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來(lái)了醉拓?” 一聲冷哼從身側(cè)響起伟姐,我...
    開(kāi)封第一講書(shū)人閱讀 37,817評(píng)論 0 268
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎亿卤,沒(méi)想到半個(gè)月后愤兵,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,275評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡排吴,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,592評(píng)論 2 327
  • 正文 我和宋清朗相戀三年秆乳,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,724評(píng)論 1 341
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡屹堰,死狀恐怖肛冶,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情扯键,我是刑警寧澤睦袖,帶...
    沈念sama閱讀 34,409評(píng)論 4 333
  • 正文 年R本政府宣布,位于F島的核電站荣刑,受9級(jí)特大地震影響馅笙,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜厉亏,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 40,052評(píng)論 3 316
  • 文/蒙蒙 一董习、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧爱只,春花似錦皿淋、人聲如沸。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,815評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至忘渔,卻和暖如春高帖,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背畦粮。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 32,043評(píng)論 1 266
  • 我被黑心中介騙來(lái)泰國(guó)打工散址, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人宣赔。 一個(gè)月前我還...
    沈念sama閱讀 46,503評(píng)論 2 361
  • 正文 我出身青樓预麸,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親儒将。 傳聞我的和親對(duì)象是個(gè)殘疾皇子吏祸,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,627評(píng)論 2 350