亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Java怎么使用指針進行搜索

發布時間:2021-12-20 13:46:24 來源:億速云 閱讀:111 作者:iii 欄目:云計算

這篇文章主要講解了“Java怎么使用指針進行搜索”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“Java怎么使用指針進行搜索”吧!

Given a string, find the length of the longest substring without repeating characters.  

Examples:   
Given "abcabcbb", the answer is "abc", which the length is 3.   
Given "bbbbb", the answer is "b", with the length of 1.    
Given "pwwkew", the answer is "wke", with the length of 3. Note that the answer must be   
 a substring;"pwke" is a subsequence and not a substring.*
package com.lifeibigdata.algorithms.leetcode;

import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
import java.util.Set;

/**
 * Created by lifei on 16/5/27.
 *
 *  時間復雜度為O(N)的算法
 使用i和j兩個指針進行搜索,i代表候選的最長子串的開頭,j代表候選的最長子串的結尾。
 先假設i不動,那么在理想的情況下,我們希望可以一直右移j,直到j到達原字符串的結尾,此時j-i就構成了一個候選的最長子串。每次都維護一個max_length,就可以選出最長子串了。
 實際情況是,不一定可以一直右移j,如果字符j已經重復出現過(假設i在位置k),就需要停止右移了。記錄當前的候選子串并和max_length做比較。接下來為下一次搜尋做準備。
 在下一次搜尋中,i應該更新到k+1。這句話的意思是,用這個例子來理解,abcdef是個不重復的子串,abcdefc中(為了方便記錄為abc1defc2),c1和c2重復了。
 那么下一次搜尋,應該跨過出現重復的地方進行,否則找出來的候選串依然有重復字符,且長度還不如上次的搜索。所以下一次搜索,直接從c1的下一個字符d開始進行,
 也就是說,下一次搜尋中,i應該更新到k+1
 */
public class LengthOfLongestSubstring {
    public static void main(String[] args) {
        LengthOfLongestSubstring lols = new LengthOfLongestSubstring();
        System.out.println(lols.lengthOfLongestSubstring("abcdefcgh"));

    }

    public int lengthOfLongestSubstring(String s) {
        int n = s.length(), ans = 0;
        int[] index = new int[128]; // current index of character
        // try to extend the range [i, j]
        for (int j = 0, i = 0; j < n; ++j) {
            i = Math.max(index[s.charAt(j)], i);//index['a']會將char轉為ascII碼,a是97
            ans = Math.max(ans, j - i + 1);
            index[s.charAt(j)] = j + 1;   //將j所在的值,的對應位置存到index數組中
        }
        return ans;
    }


//    public int lengthOfLongestSubstring(String s) {
//        int n = s.length();
//        Set<Character> set = new HashSet<>();
//        int ans = 0, i = 0, j = 0;
//        while (i < n && j < n) {
//            // try to extend the range [i, j]
//            if (!set.contains(s.charAt(j))){       //如果j沒有出現重復字符,將j添加到set中,這個過程中,i保持不變
//                set.add(s.charAt(j++));
//                ans = Math.max(ans, j - i);        //比較獲取最大的ans
//            }
//            else {                                 //出現重復字符,這個字符在i-j之間,所以從i開始逐個刪除,直到不包含重復字符
//                set.remove(s.charAt(i++));
//            }
//        }
//        return ans;
//    }


//    public int lengthOfLongestSubstring(String s) {    //使用map存儲字母和索引
//        int n = s.length(), ans = 0;
//        Map<Character, Integer> map = new HashMap<>(); // current index of character
//        // try to extend the range [i, j]
//        for (int j = 0, i = 0; j < n; ++j) {
//            if (map.containsKey(s.charAt(j))) {
//                i = Math.max(map.get(s.charAt(j)), i);
//            }
//            ans = Math.max(ans, j - i + 1);
//            map.put(s.charAt(j), j + 1);
//        }
//        return ans;
//    }


//    public int lengthOfLongestSubstring(String s) {
//        int n = s.length();
//        int ans = 0;
//        for (int i = 0; i < n; ++i)
//            for (int j = i + 1; j <= n; ++j)
//                if (allUnique(s, i, j)) ans = Math.max(ans, j - i);
//        return ans;
//    }
//
//    public boolean allUnique(String s, int start, int end) {
//        Set<Character> set = new HashSet<>();
//        for (int i = start; i < end; ++i) {
//            Character ch = s.charAt(i);
//            if (set.contains(ch)) return false;
//            set.add(ch);
//        }
//        return true;
//    }
}

感謝各位的閱讀,以上就是“Java怎么使用指針進行搜索”的內容了,經過本文的學習后,相信大家對Java怎么使用指針進行搜索這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

阿坝县| 遵义市| 永新县| 贵州省| 余庆县| 通河县| 绍兴市| 阿城市| 漳州市| 灌阳县| 汽车| 阜康市| 梁山县| 泰州市| 阳东县| 古浪县| 清水县| 潮安县| 蓬安县| 东乌珠穆沁旗| 苍山县| 长汀县| 元氏县| 大埔区| 博野县| 汉中市| 鄂温| 五指山市| 琼结县| 祁阳县| 辽阳市| 牟定县| 洪泽县| 石屏县| 吉林市| 洱源县| 托克托县| 波密县| 克什克腾旗| 兴义市| 榆中县|