劍指offer(二)——java

31.題目描述:求出113的整數(shù)中1出現(xiàn)的次數(shù),并算出1001300的整數(shù)中1出現(xiàn)的次數(shù)?為此他特別數(shù)了一下1~13中包含1的數(shù)字有1、10榆鼠、11、12亥鸠、13因此共出現(xiàn)6次,但是對于后面問題他就沒轍了妆够。ACMer希望你們幫幫他,并把問題更加普遍化,可以很快的求出任意非負(fù)整數(shù)區(qū)間中1出現(xiàn)的次數(shù)。
    import java.util.*;
    public class Solution {
        public int NumberOf1Between1AndN_Solution(int n) {
        
            if(n <= 0)
                return 0;
            
            int high, low, cur, i = 1;
            high = n;
            int count = 0;
            while(high != 0){
                high = n / (int)Math.pow(10, i);
                int tmp = n % (int)Math.pow(10,i);
                cur = tmp / (int)Math.pow(10,i-1);
                low = tmp % (int)Math.pow(10,i-1);
                if(cur > 1){
                    count += (high+1) * (int)Math.pow(10, i-1);
                }else if(cur == 1){
                    count += high * (int)Math.pow(10,i-1) + low +1;
                }else{
                    count+= high * (int)Math.pow(10,i-1);
                }
                i++;
            }
            return count;
        }
    }
32.題目描述:輸入一個正整數(shù)數(shù)組负蚊,把數(shù)組里所有數(shù)字拼接起來排成一個數(shù)神妹,打印能拼接出的所有數(shù)字中最小的一個。例如輸入數(shù)組{3盖桥,32灾螃,321},則打印出這三個數(shù)字能排成的最小數(shù)字為321323揩徊。
    import java.util.ArrayList;
    import java.util.*;
    public class Solution {
        public String PrintMinNumber(int [] numbers) {
            ArrayList<String> list = new ArrayList<>();
            for(int i=0; i<numbers.length; i++){
                list.add(Integer.toString(numbers[i]));
            }
            Collections.sort(list,new Comparator<String>(){
                public int compare(String o1, String o2){
                    String s1 = o1 + o2;
                    String s2 = o2 + o1;
                    return s1.compareTo(s2);
                }
            }
           );
            StringBuilder sb = new StringBuilder();
            for(String s : list){
                sb.append(s);
            }
            return sb.toString();
        }
    }
33.題目描述:把只包含素因子2腰鬼、3和5的數(shù)稱作丑數(shù)(Ugly Number)。例如6塑荒、8都是丑數(shù)熄赡,但14不是浮声,因?yàn)樗蜃?勤揩。 習(xí)慣上我們把1當(dāng)做是第一個丑數(shù)。求按從小到大的順序的第N個丑數(shù)溶诞。
    import java.util.*;
    public class Solution {
        public int GetUglyNumber_Solution(int index) {
            if(index <= 0){
                return 0;
            }
            List<Integer> list = new ArrayList();
            list.add(1);
            int num1, num2, num3;
            int index1=0,index2=0,index3=0;
            while(list.size() < index){
                
                num1 = list.get(index1) * 2;
                num2 = list.get(index2) * 3;
                num3 = list.get(index3) * 5;
                
                int min = Math.min(num1, Math.min(num2,num3));
                
                list.add(min);
                
                if(min == num1)
                    index1 ++;
                if(min == num2)
                    index2 ++;
                if(min == num3)
                    index3 ++;
            }
            
            return list.get(index-1);
        }
    }
34.題目描述:在一個字符串(1<=字符串長度<=10000凌箕,全部由字母組成)中找到第一個只出現(xiàn)一次的字符,并返回它的位置拧篮。如果字符串為空,返回-1
    import java.util.*;
    public class Solution {
        public int FirstNotRepeatingChar(String str) {
            
            char[] chars = str.toCharArray();//轉(zhuǎn)換成字符數(shù)組
            LinkedHashMap<Character,Integer> map = new LinkedHashMap<>();
            for(int i=0; i<chars.length; i++){
                if(map.containsKey(chars[i])){
                    int value = map.get(chars[i]);
                    map.put(chars[i],value+1);
                }else{
                    map.put(chars[i],1);
                }
            }
            
            for(int i=0; i<chars.length; i++){
                if(map.get(chars[i]) == 1)
                    return i;
            }
            return -1;
            
        }
    }
35.題目描述:在數(shù)組中的兩個數(shù)字,如果前面一個數(shù)字大于后面的數(shù)字牵舱,則這兩個數(shù)字組成一個逆序?qū)Υā]斎胍粋€數(shù)組,求出這個數(shù)組中的逆序?qū)Φ目倲?shù)P。并將P對1000000007取模的結(jié)果輸出芜壁。 即輸出P%1000000007
    public class Solution {
        private int count = 0;
        private int[] copy;
        public int InversePairs(int [] array) {
            if(array == null || array.length == 0)
                return 0;
            copy = new int[array.length];
            sort(array, 0, array.length-1);
            return count;
        }
    
        public void sort(int[] array, int start, int end){
            if(start >= end)
                return;
    
            int mid = (start + end) / 2;
            sort(array, start, mid);
            sort(array,mid+1, end);
            merger(array, start, mid, end);
        }
    
        public void merger(int[] array, int start, int mid, int end){
    
            int i = start, j = mid+1;
            for(int k=i; k <= end; k++){
                copy[k] = array[k]; //復(fù)制需要合并的數(shù)組
            }
    
            for(int k = start; k <= end; k++){
                if(i > mid) array[k] = copy[j++]; //最半邊取盡
                else if(j > end) array[k] = copy[i++]; //右半邊取盡
                else if(copy[i] <= copy[j]) array[k] = copy[i++]; //左邊小于等于右邊
                else {
                    array[k] = copy[j++];
                    count = (count + mid - i+1) % 1000000007;
                }
            }
        }
    }
36.題目描述:輸入兩個鏈表礁凡,找出它們的第一個公共結(jié)點(diǎn)高氮。
    /*
    public class ListNode {
        int val;
        ListNode next = null;
    
        ListNode(int val) {
            this.val = val;
        }
    }*/
    public class Solution {
        public ListNode FindFirstCommonNode(ListNode pHead1, ListNode pHead2) {
     
            if(pHead1 == null || pHead2 == null)
                return null;
            
            int length1 = getLength(pHead1);
            int length2 = getLength(pHead2);
            
            int lengthDif = length1 - length2;
            
            ListNode longNode = pHead1; 
            ListNode shortNode = pHead2;
            if(length2 > length1){
                lengthDif = length2 - length1;
                longNode = pHead2;
                shortNode = pHead1;
            }
            
            for(int i=0; i<lengthDif; i++){//長鏈表后移lengthDif位
                longNode = longNode.next;
            }
            
            while(longNode != null && shortNode != null && longNode != shortNode){
                longNode = longNode.next;
                shortNode = shortNode.next;
            }
            return longNode;
        }
        
        public int getLength(ListNode head){//獲取鏈表長度
            int length = 0;
            ListNode pNode = head;
            while(pNode != null){
                length ++;
                pNode = pNode.next;
            }
            return length;
        }
    }
37.題目描述:統(tǒng)計一個數(shù)字在排序數(shù)組中出現(xiàn)的次數(shù)。
    public class Solution {
           public int GetNumberOfK(int [] array , int k) {
            if(array == null || array.length == 0)
                return 0;
    
            int left = getLeftIndex(array,k);
            int right = getRightIndex(array, k);
            
            if(left == -1 || right == -1)
                return 0;
            
            return right - left +1;
        }
    
        public int getLeftIndex(int[] array, int k){//獲取左邊第一個k下標(biāo)
            int low = 0, mid = 0, high = array.length-1;
    
            while(low <= high){
                mid = (low + high) / 2;
                if(array[mid] > k){
                    high = mid - 1;
                }else if(array[mid] < k){
                    low = mid +1;
                }else{
                    if(mid > 0 && array[mid-1] == k){
                        high = mid-1;
                    }else{
                        return mid;
                    }
                }
            }
            return -1;
        }
    
        public int getRightIndex(int[] array, int k){//獲取左邊第一個k下標(biāo)
            int low = 0, mid=0, high = array.length-1;
            while(low <= high){
                mid = (low+high) / 2;
                if(array[mid] > k){
                    high = mid -1;
                }else if(array[mid] < k){
                    low = mid +1;
                }else{
                    if(mid < array.length-1 && array[mid+1] == k){
                        low = mid+1;
                    }else{
                        return mid;
                    }
                }
            }
            return -1;
        }
    
    }
38.題目描述:輸入一棵二叉樹顷牌,求該樹的深度剪芍。從根結(jié)點(diǎn)到葉結(jié)點(diǎn)依次經(jīng)過的結(jié)點(diǎn)(含根、葉結(jié)點(diǎn))形成樹的一條路徑窟蓝,最長路徑的長度為樹的深度罪裹。
    /**
    public class TreeNode {
        int val = 0;
        TreeNode left = null;
        TreeNode right = null;
    
        public TreeNode(int val) {
            this.val = val;
    
        }
    
    }
    */
    public class Solution {
        public int TreeDepth(TreeNode root) {
            if(root == null)
                return 0;
            int left = TreeDepth(root.left);
            int right = TreeDepth(root.right);
            
            return left > right ? (left + 1) : (right + 1);
        }
    }
39.題目描述:輸入一棵二叉樹,判斷該二叉樹是否是平衡二叉樹疗锐。
    public class Solution {
        boolean isBalanced = true;
        public boolean IsBalanced_Solution(TreeNode root) {
            
            getDeep(root);
            return isBalanced;
        }
        
        public int getDeep(TreeNode root){
            if(root == null)
                return 0;
            
            int left = getDeep(root.left);
            int right = getDeep(root.right);
            
            if(left - right > 1 || left - right < -1){
                isBalanced = false;
            }
            
            return left > right ? left + 1 : right + 1;
        }
    }
40.題目描述:一個整型數(shù)組里除了兩個數(shù)字之外坊谁,其他的數(shù)字都出現(xiàn)了兩次。請寫程序找出這兩個只出現(xiàn)一次的數(shù)字滑臊。
    //num1,num2分別為長度為1的數(shù)組口芍。傳出參數(shù)
    //將num1[0],num2[0]設(shè)置為返回結(jié)果
    public class Solution {
        public void FindNumsAppearOnce(int [] array,int num1[] , int num2[]) {
            if(array.length == 2){
                num1[0] = array[0];
                num2[1] = array[1];
            }
            
            int result = 0;
            for(int i=0; i<array.length; i++){
                result ^= array[i];
            }
            int index = findFirstBitIs1(result);
            num1[0] = 0;
            num2[0] = 0;
            
            for(int i=0; i<array.length; i++){
                if(isBit1(array[i], index)){
                    num1[0] ^= array[i];
                }else{
                    num2[0] ^= array[i];
                }
            }
            
        }
        
        public boolean isBit1(int num, int indexBit){
            num = num >> indexBit;
            return (num & 1) == 1;
        }
        
        public int findFirstBitIs1(int num){//求兩個出現(xiàn)一次數(shù)字的下標(biāo)
            int index = 0;
           
            while((num & 1) == 0){
                num = num >> 1;
                ++index;
            }
            return index;
        }
    }
41.題目描述:小明很喜歡數(shù)學(xué),有一天他在做數(shù)學(xué)作業(yè)時,要求計算出9~16的和,他馬上就寫出了正確答案是100。但是他并不滿足于此,他在想究竟有多少種連續(xù)的正數(shù)序列的和為100(至少包括兩個數(shù))雇卷。沒多久,他就得到另一組連續(xù)正數(shù)和為100的序列:18,19,20,21,22△尥郑現(xiàn)在把問題交給你,你能不能也很快的找出所有和為S的連續(xù)正數(shù)序列? Good Luck!
    import java.util.ArrayList;
    public class Solution {
        public ArrayList<ArrayList<Integer> > FindContinuousSequence(int sum) {
           ArrayList<ArrayList<Integer>> list = new ArrayList<>();
           if(sum < 3)
               return list;
            
           int small = 1;
           int big = 2;
           int mid = (sum + 1) / 2;
           int curSum = big + small;
            
           while(small < mid){
               
               if(curSum == sum){
                   list.add(countinueSequence(small, big));
                   curSum -= small;
                   ++ small;
               }else if(curSum < sum){
                   ++big;
                   curSum += big;
               }else{ 
                   curSum -= small;
                    ++small;
               }
           }
           return list;
        }
        
        public ArrayList<Integer> countinueSequence(int small, int big){
            ArrayList<Integer> list = new ArrayList<>();
            for(int i=small; i<= big; i++){
                list.add(i);
            }
            return list;
        }
    }
42.題目描述:輸入一個遞增排序的數(shù)組和一個數(shù)字S,在數(shù)組中查找兩個數(shù)关划,使得他們的和正好是S小染,如果有多對數(shù)字的和等于S,輸出兩個數(shù)的乘積最小的贮折。
    import java.util.ArrayList;
    public class Solution {
        public ArrayList<Integer> FindNumbersWithSum(int [] array,int sum) {
            
            int first = 0, last = array.length-1;
            
            int mulSum = Integer.MAX_VALUE;
            ArrayList<Integer> list = new ArrayList<>();
            while(first < last){
                int numFirst = array[first];
                int numLast = array[last];
                
                if(numFirst + numLast < sum)
                    ++first;
                else if(numFirst + numLast > sum)
                    --last;
                else{
                    if(numFirst * numLast < mulSum){
                        mulSum = numFirst *  numLast;
                        list.clear();
                        list.add(numFirst);
                        list.add(numLast);
                    }
                    ++first;
                }
            }
            return list;
        }
    }
43.題目描述:匯編語言中有一種移位指令叫做循環(huán)左移(ROL)裤翩,現(xiàn)在有個簡單的任務(wù),就是用字符串模擬這個指令的運(yùn)算結(jié)果调榄。對于一個給定的字符序列S踊赠,請你把其循環(huán)左移K位后的序列輸出。例如每庆,字符序列S=”abcXYZdef”,要求輸出循環(huán)左移3位后的結(jié)果筐带,即“XYZdefabc”。是不是很簡單缤灵?OK伦籍,搞定它!
    public class Solution {
        public String LeftRotateString(String str,int n) {
            if(str == null || str.length() == 0){
                return "";
            }
            
            char[] chars = str.toCharArray();
            int length = chars.length;
            reverse(chars, 0, length-1);
            
            n = n % length;
            
            reverse(chars, 0, length - n -1);
            reverse(chars, length -n, length-1);
            
            return new String(chars);
        }
        
        public void reverse(char[] chars, int start, int end){//翻轉(zhuǎn)
            while(start < end){
                char tmp = chars[start];
                chars[start] = chars[end];
                chars[end] = tmp;
                ++ start;
                --end;
            }
        }
    }
44.題目描述:湃觯客最近來了一個新員工Fish帖鸦,每天早晨總是會拿著一本英文雜志,寫些句子在本子上胚嘲。同事Cat對Fish寫的內(nèi)容頗感興趣富蓄,有一天他向Fish借來翻看,但卻讀不懂它的意思慢逾。例如立倍,“student. a am I”。后來才意識到侣滩,這家伙原來把句子單詞的順序翻轉(zhuǎn)了口注,正確的句子應(yīng)該是“I am a student.”。Cat對一一的翻轉(zhuǎn)這些單詞順序可不在行君珠,你能幫助他么寝志?
    public class Solution {
        public String ReverseSentence(String str) {
            
            if(str == null || str.length() == 1)
                return str;
            
            char[] chars = str.toCharArray();
            reverse(chars, 0, str.length()-1);
            
            int start = 0;
            for(int i=0; i<chars.length; ++i){
                if(chars[i] == ' '){
                    reverse(chars, start, i-1);
                    start = i + 1;
                }else if(i == chars.length-1){
                    reverse(chars, start, i);
                }
            }
            return String.valueOf(chars);
        }
        
        public void reverse(char[] chars, int start, int end){//翻轉(zhuǎn)
            while(start < end){
                char tmp = chars[start];
                chars[start] = chars[end];
                chars[end] = tmp;
                ++ start;
                --end;
            }
        }
    }
45.題目描述:LL今天心情特別好,因?yàn)樗ベI了一副撲克牌,發(fā)現(xiàn)里面居然有2個大王,2個小王(一副牌原本是54張_)...他隨機(jī)從中抽出了5張牌,想測測自己的手氣,看看能不能抽到順子,如果抽到的話,他決定去買體育彩票,嘿嘿!策添!“紅心A,黑桃3,小王,大王,方片5”,“Oh My God!”不是順子.....LL不高興了,他想了想,決定大\小 王可以看成任何數(shù)字,并且A看作1,J為11,Q為12,K為13材部。上面的5張牌就可以變成“1,2,3,4,5”(大小王分別看作2和4),“So Lucky!”。LL決定去買體育彩票啦唯竹。 現(xiàn)在,要求你使用這幅牌模擬上面的過程,然后告訴我們LL的運(yùn)氣如何乐导。為了方便起見,你可以認(rèn)為大小王是0。
    import java.util.*;
    public class Solution {
        public boolean isContinuous(int [] numbers) {
    
            if(numbers == null || numbers.length < 1)
                return false;
            
            Arrays.sort(numbers);
            
            int numberZero = 0;
            int numberGap = 0;
            
            for(int i=0; i<numbers.length && numbers[i] == 0; i++){
               ++numberZero ;
            }
            
            int small = numberZero;
            int big = small + 1;
            
            while(big < numbers.length){
                if(numbers[small] == numbers[big])//對子
                    return false;
                
                numberGap += numbers[big] - numbers[small] - 1;
                small = big;
                ++big;
            }
            
            if(numberGap <= numberZero)
                return true;
            return false;
        }
    }
46.題目描述:每年六一兒童節(jié),沤牵客都會準(zhǔn)備一些小禮物去看望孤兒院的小朋友,今年亦是如此物臂。HF作為牛客的資深元老,自然也準(zhǔn)備了一些小游戲产上。其中,有個游戲是這樣的:首先,讓小朋友們圍成一個大圈棵磷。然后,他隨機(jī)指定一個數(shù)m,讓編號為0的小朋友開始報數(shù)。每次喊到m-1的那個小朋友要出列唱首歌,然后可以在禮品箱中任意的挑選禮物,并且不再回到圈中,從他的下一個小朋友開始,繼續(xù)0...m-1報數(shù)....這樣下去....直到剩下最后一個小朋友,可以不用表演,并且拿到沤粒客名貴的“名偵探柯南”典藏版(名額有限哦!!_)仪媒。請你試著想下,哪個小朋友會得到這份禮品呢?(注:小朋友的編號是從0到n-1)
    public class Solution {
        public int LastRemaining_Solution(int n, int m) {
            if(n < 1 || m < 1)
                return -1;
            int last = 0;
            for(int i=2; i<=n; i++){
                last = (last + m) % i;
            }
            return last;
        }
    }
47.題目描述:求1+2+3+...+n谢鹊,要求不能使用乘除法算吩、for、while撇贺、if赌莺、else、switch松嘶、case等關(guān)鍵字及條件判斷語句(A?B:C)艘狭。
    public class Solution {
        public int Sum_Solution(int n) {
            int sum = n;
            boolean bool = (sum>0)  && (sum += Sum_Solution(n-1))>0;
            return sum;
        }
    }
48.題目描述:寫一個函數(shù),求兩個整數(shù)之和翠订,要求在函數(shù)體內(nèi)不得使用+巢音、-、*尽超、/四則運(yùn)算符號官撼。
    public class Solution {
        public int Add(int num1,int num2) {
           
            int sum = num1 ^ num2;
            int carry = (num1 & num2) << 1;
           
            sum += carry;
            return sum;
        }
    }
49.題目描述:將一個字符串轉(zhuǎn)換成一個整數(shù),要求不能使用字符串轉(zhuǎn)換整數(shù)的庫函數(shù)似谁。 數(shù)值為0或者字符串不是一個合法的數(shù)值則返回0
    public class Solution {
        public int StrToInt(String str) {
            
            if(str == null)
                return 0;
            boolean negative = false;//判斷符號
            int result = 0;
            int i =0, len = str.length();
            
            if(len > 0){
                char firstChar = str.charAt(0);
                if(firstChar < '0'){
                    if(firstChar == '-'){
                        negative = true;
                    }else if(firstChar != '+')
                        return 0;
                    
                    if(len == 1)
                        return 0;
                    i++;
                }
                
                while(i < len){
                    char c = str.charAt(i++);
                    if(c < '0' || c > '9')
                        return 0;
                    if((negative && -result < Integer.MIN_VALUE) || (!negative && result > Integer.MAX_VALUE))
                        return 0;
                    result  = result * 10 + (c - '0');
                    
                }
            }else{
                return 0;
            }
            return negative ? -result : result;
        }
    }
50.題目描述:在一個長度為n的數(shù)組里的所有數(shù)字都在0到n-1的范圍內(nèi)傲绣。 數(shù)組中某些數(shù)字是重復(fù)的掠哥,但不知道有幾個數(shù)字是重復(fù)的。也不知道每個數(shù)字重復(fù)幾次秃诵。請找出數(shù)組中任意一個重復(fù)的數(shù)字续搀。 例如,如果輸入長度為7的數(shù)組{2,3,1,0,2,5,3}菠净,那么對應(yīng)的輸出是重復(fù)的數(shù)字2或者3禁舷。
    public class Solution {
        // Parameters:
        //    numbers:     an array of integers
        //    length:      the length of array numbers
        //    duplication: (Output) the duplicated number in the array number,length of duplication array is 1,so using duplication[0] = ? in implementation;
        //                  Here duplication like pointor in C/C++, duplication[0] equal *duplication in C/C++
        //    這里要特別注意~返回任意重復(fù)的一個,賦值duplication[0]
        // Return value:       true if the input is valid, and there are some duplications in the array number
        //                     otherwise false
        public boolean duplicate(int numbers[],int length,int [] duplication) {
        
            if(numbers == null || numbers.length < 1)
                return false;
            
            for(int i=0; i<numbers.length; ++i){
                if(numbers[i] < 0 || numbers[i] > length-1)
                    return false;
            }
            
            for(int i=0; i< length; ++i){
               
                while(numbers[i] != i){
                    if(numbers[i] == numbers[numbers[i]]){
                        duplication[0] = numbers[i];
                        return true;
                    }
                    int temp = numbers[i];
                    numbers[i] = numbers[temp];
                    numbers[temp] = temp;
                    
                }
            }
            return false;
        }
    }
51.題目描述:給定一個數(shù)組A[0,1,...,n-1],請構(gòu)建一個數(shù)組B[0,1,...,n-1],其中B中的元素B[i]=A[0]A[1]...A[i-1]A[i+1]...A[n-1]毅往。不能使用除法牵咙。
    import java.util.ArrayList;
    public class Solution {
        public int[] multiply(int[] A) {
            if(A == null || A.length < 1){
                return null;
            }
            
            int[] array1 = new int[A.length];//保存前半部分矩陣
            array1[0] = 1;
            for(int i=1; i< A.length; i++){
                array1[i] = array1[i-1] * A[i-1];
            }
            
            int[] array2 = new int[A.length];
            array2[A.length-1] = array1[A.length-1]; // 設(shè)置最后一個值
           
            int temp = 1;
            for(int i=A.length-2; i>=0; i--){
                temp *= A[i+1];
                array2[i] = temp * array1[i];
            }
            return array2;
        }
    }
52.題目描述:請實(shí)現(xiàn)一個函數(shù)用來匹配包括'.'和''的正則表達(dá)式。模式中的字符'.'表示任意一個字符攀唯,而''表示它前面的字符可以出現(xiàn)任意次(包含0次)洁桌。 在本題中,匹配是指字符串的所有字符匹配整個模式革答。例如战坤,字符串"aaa"與模式"a.a"和"abaca"匹配,但是與"aa.a"和"ab*a"均不匹配
    public class Solution {
          public boolean match(char[] str, char[] pattern) {
    
            if(str == null || pattern == null)
                return false;
            int strIndex = 0;
            int patternIndex = 0;
            return  isMatchCode(str,pattern,strIndex, patternIndex);
        }
    
        /**
       
         當(dāng)模式中的第二個字符不是“*”時:
         1残拐、如果字符串第一個字符和模式中的第一個字符相匹配途茫,那么字符串和模式都后移一個字符,然后匹配剩余的溪食。
         2囊卜、如果
         字符串第一個字符和模式中的第一個字符相不匹配,直接返回false错沃。
    
         而當(dāng)模式中的第二個字符是“*”時:
         如果字符串第一個字符跟模式第一個字符不匹配栅组,則模式后移2個字符,繼續(xù)匹配枢析。如果字符串第一個字符跟模式第一個字符匹配玉掸,可以有3種匹配方式:
         1、模式后移2字符醒叁,相當(dāng)于x*被忽略司浪;
         2、字符串后移1字符把沼,模式后移2字符啊易;
         3、字符串后移1字符饮睬,模式不變租谈,即繼續(xù)匹配字符下一位,因?yàn)?可以匹配多位捆愁;
     */
       
        public boolean isMatchCode(char[] str, char[] pattern, int strIndex, int patIndex){
    
            if(strIndex == str.length && patIndex == pattern.length)
                return true;
    
            if(strIndex != str.length && patIndex == pattern.length)
                return false;
    
            if(patIndex+1<pattern.length && pattern[patIndex+1] == '*'){
                if(strIndex != str.length &&(pattern[patIndex] ==str[strIndex] || pattern[patIndex] == '.')){
                    
                    return isMatchCode(str,pattern,strIndex, patIndex+2)  || isMatchCode(str,pattern,strIndex+1,patIndex+1)|| isMatchCode(str,pattern, strIndex+1, patIndex);
                }else {
                    return isMatchCode(str, pattern, strIndex, patIndex+2);
                }
            }
            
            if(strIndex != str.length && (pattern[patIndex] == str[strIndex] || pattern[patIndex] == '.')){
                return isMatchCode(str,pattern, strIndex+1, patIndex+1);
            }
            return false;
        }
    }
53.題目描述:請實(shí)現(xiàn)一個函數(shù)用來判斷字符串是否表示數(shù)值(包括整數(shù)和小數(shù))割去。例如窟却,字符串"+100","5e2","-123","3.1416"和"-1E-16"都表示數(shù)值。 但是"12e","1a3.14","1.2.3","+-5"和"12e+4.3"都不是劫拗。
    public class Solution {
        public boolean isNumeric(char[] str) {
            String s = String.valueOf(str);
            // * 匹配前一個字符0次或多次
            // ? 匹配前面的0次或者1次
            // . 配除換行符 \n 之外的任何單字符间校。要匹配 . ,請使用 \.
            // + 匹配前面字符1次或多次
            return s.matches("[\\+-]?[0-9]*(\\.[0-9]+)?([eE][\\+-]?[0-9]+)?");
        }
    }
54.題目描述:請實(shí)現(xiàn)一個函數(shù)用來找出字符流中第一個只出現(xiàn)一次的字符页慷。例如,當(dāng)從字符流中只讀出前兩個字符"go"時胁附,第一個只出現(xiàn)一次的字符是"g"酒繁。當(dāng)從該字符流中讀出前六個字符“google"時,第一個只出現(xiàn)一次的字符是"l"控妻。
    import java.util.*;
    public class Solution {
        //Insert one char from stringstream
        private LinkedHashMap<Character,Integer> map = new LinkedHashMap<>();
        public void Insert(char ch)
        {
            if(map.containsKey(ch)){
                int value = map.get(ch);
                map.put(ch, value+1);
            }else{
                map.put(ch, 1);
            }
        }
      //return the first appearence once char in current stringstream
        public char FirstAppearingOnce()
        {
            for(Map.Entry<Character,Integer> entry : map.entrySet()){
                if(entry.getValue() == 1)
                    return entry.getKey();
            }
            return '#';
        }
    }
55.題目描述:一個鏈表中包含環(huán)州袒,請找出該鏈表的環(huán)的入口結(jié)點(diǎn)。
    /*
     public class ListNode {
        int val;
        ListNode next = null;
    
        ListNode(int val) {
            this.val = val;
        }
    }
    */
    public class Solution {
    
        public ListNode EntryNodeOfLoop(ListNode pHead)
        {
            if(pHead == null)
                return null;
            ListNode p1 = pHead;
            ListNode p2 = pHead;
            while(p1 != null && p2.next != null){
                p1 = p1.next;
                p2 = p2.next.next;
                if(p1 == p2){
                    p1 = pHead;
                    while(p1 != p2){
                        p1 = p1.next;
                        p2 = p2.next;
                    }
                    return p1;
                }
            }
            return null;
        }
    }
56.題目描述:在一個排序的鏈表中弓候,存在重復(fù)的結(jié)點(diǎn)郎哭,請刪除該鏈表中重復(fù)的結(jié)點(diǎn),重復(fù)的結(jié)點(diǎn)不保留菇存,返回鏈表頭指針夸研。 例如,鏈表1->2->3->3->4->4->5 處理后為 1->2->5
    /*
     public class ListNode {
        int val;
        ListNode next = null;
    
        ListNode(int val) {
            this.val = val;
        }
    }
    */
    public class Solution {
      public static ListNode deleteDuplication(ListNode pHead) {
             
           if(pHead == null)
                return null;
    
            ListNode head = new ListNode(-1);
            head.next = pHead;
            ListNode preNode = head;
            ListNode pNode = head.next;
            while(pNode != null && pNode.next != null){
                if(pNode.val == pNode.next.val){
                    int value = pNode.val;
                    while(pNode != null && pNode.val == value)
                        pNode = pNode.next;
                    preNode.next = pNode;
                }else{
                    preNode = pNode;
                    pNode = pNode.next;
                }
            }
            return head.next;
        }
    }
57.題目描述:給定一個二叉樹和其中的一個結(jié)點(diǎn)依鸥,請找出中序遍歷順序的下一個結(jié)點(diǎn)并且返回亥至。注意,樹中的結(jié)點(diǎn)不僅包含左右子結(jié)點(diǎn)贱迟,同時包含指向父結(jié)點(diǎn)的指針姐扮。
    /*
    public class TreeLinkNode {
        int val;
        TreeLinkNode left = null;
        TreeLinkNode right = null;
        TreeLinkNode next = null;
    
        TreeLinkNode(int val) {
            this.val = val;
        }
    }
    */
    public class Solution {
        public TreeLinkNode GetNext(TreeLinkNode pNode)
        {
            if(pNode == null)
                return null;
            
            if(pNode.right != null){
                pNode = pNode.right;
                while(pNode.left != null)
                    pNode = pNode.left;
                return pNode;
            }else{
                TreeLinkNode node = pNode.next;
                while(node != null && node.right == pNode){
                    pNode = node;
                    node = node.next;
                }
                return node;
            }
            
        }
    }
58.題目描述:請實(shí)現(xiàn)一個函數(shù),用來判斷一顆二叉樹是不是對稱的衣吠。注意茶敏,如果一個二叉樹同此二叉樹的鏡像是同樣的,定義其為對稱的缚俏。
    /*
    public class TreeNode {
        int val = 0;
        TreeNode left = null;
        TreeNode right = null;
    
        public TreeNode(int val) {
            this.val = val;
    
        }
    
    }
    */
    public class Solution {
        boolean isSymmetrical(TreeNode pRoot)
        {
            return isSymmetrical(pRoot, pRoot);
        }
        
        boolean isSymmetrical(TreeNode root1, TreeNode root2){
            if(root1 == null && root2 == null)
                return true;
            
            if(root1 == null || root2 == null)
                return false;
            
            if(root1.val != root2.val)
                return false;
            
            return isSymmetrical(root1.left,root2.right) && isSymmetrical(root1.right, root2.left);
        }
    }
59.題目描述:請實(shí)現(xiàn)一個函數(shù)按照之字形打印二叉樹惊搏,即第一行按照從左到右的順序打印,第二層按照從右至左的順序打印袍榆,第三行按照從左到右的順序打印胀屿,其他行以此類推。
    import java.util.ArrayList;
    import java.util.*;
    /*
    public class TreeNode {
        int val = 0;
        TreeNode left = null;
        TreeNode right = null;
    
        public TreeNode(int val) {
            this.val = val;
    
        }
    
    }
    */
    public class Solution {
        public ArrayList<ArrayList<Integer> > Print(TreeNode pRoot) {
    
            ArrayList<ArrayList<Integer>> list = new ArrayList<>();
            if(pRoot == null)
                return list;
            
            LinkedList<TreeNode> stack1 = new LinkedList<>();
            LinkedList<TreeNode> stack2 = new LinkedList<>();
            
            stack1.push(pRoot);
            int index = 1;
            
            while(!stack1.isEmpty() || !stack2.isEmpty()){
                ArrayList<Integer> arrayList = new ArrayList<>();
                if(index == 1){
                    while(!stack1.isEmpty()){
                        TreeNode node = stack1.pop();
                        if(node.left != null){
                            stack2.push(node.left);
                        }
                        if(node.right != null){
                            stack2.push(node.right);
                        }
                        arrayList.add(node.val);
                    }
                    index = 2;
                }else{
                    while(!stack2.isEmpty()){
                        TreeNode node = stack2.pop();
                        if(node.right != null){
                            stack1.push(node.right);
                        }
                        if(node.left != null){
                            stack1.push(node.left);
                        }
                        arrayList.add(node.val);
                    }
                    index = 1;
                }
                if(arrayList.size()>0)
                    list.add(arrayList);
            }
            return list;
           
        }
    }
60.題目描述:從上到下按層打印二叉樹包雀,同一層結(jié)點(diǎn)從左至右輸出宿崭。每一層輸出一行。
    import java.util.ArrayList;
    import java.util.*;
    
    /*
    public class TreeNode {
        int val = 0;
        TreeNode left = null;
        TreeNode right = null;
    
        public TreeNode(int val) {
            this.val = val;
    
        }
    
    }
    */
    public class Solution {
        ArrayList<ArrayList<Integer> > Print(TreeNode pRoot) {
        
            ArrayList<ArrayList<Integer>> list = new ArrayList<>();
            if(pRoot == null)
                return list;
            
            LinkedList<TreeNode> queue = new LinkedList<>();
            queue.offer(pRoot);
            
            while(!queue.isEmpty()){
                int num = queue.size();
                ArrayList<Integer> array = new ArrayList<>();
                while(num > 0){
                    TreeNode node = queue.poll();
                    if(node.left != null)
                        queue.offer(node.left);
                    if(node.right != null)
                        queue.offer(node.right);
                    
                    array.add(node.val);
                    -- num;
                }
                if(array.size() > 0){
                    list.add(array);
                }
            }
            
            return list;
        }
        
    }
61.題目描述:請實(shí)現(xiàn)兩個函數(shù)才写,分別用來序列化和反序列化二叉樹
    /*
    public class TreeNode {
        int val = 0;
        TreeNode left = null;
        TreeNode right = null;
    
        public TreeNode(int val) {
            this.val = val;
    
        }
    
    }
    */
    public class Solution {
        int index = 0;
        String Serialize(TreeNode root) {
            if(root == null)
                return "#,";
            String res = root.val +",";
            res += Serialize(root.left);
            res += Serialize(root.right);
            return res;
      }
        TreeNode Deserialize(String str) {
           String[] s = str.split(",");
           return Deserialize(s);
      }
        TreeNode Deserialize(String[] s){
            if(s[index].equals("#")){
                ++index;
                return null;
            }
               
            TreeNode root = new TreeNode(Integer.parseInt(s[index++])); 
            root.left = Deserialize(s);
            root.right = Deserialize(s);
            return root;
        }
    }
62.題目描述:給定一顆二叉搜索樹葡兑,請找出其中的第k大的結(jié)點(diǎn)奖蔓。例如, 5 / \ 3 7 /\ /\ 2 4 6 8 中讹堤,按結(jié)點(diǎn)數(shù)值大小順序第三個結(jié)點(diǎn)的值為4吆鹤。
    /*
    public class TreeNode {
        int val = 0;
        TreeNode left = null;
        TreeNode right = null;
    
        public TreeNode(int val) {
            this.val = val;
    
        }
    
    }
    */
    public class Solution {
        int index = 0;
        TreeNode KthNode(TreeNode pRoot, int k)
        {
            if(pRoot != null){
                TreeNode node = KthNode(pRoot.left,k);//找到中序第一個節(jié)點(diǎn)
                
                if(node != null)
                    return node;
                ++index;
                if(index == k )
                    return pRoot;
                
                node = KthNode(pRoot.right,k);
                if(node != null)
                    return node;
                
            }
            return null;
        }
    }
63.題目描述:如何得到一個數(shù)據(jù)流中的中位數(shù)?如果從數(shù)據(jù)流中讀出奇數(shù)個數(shù)值洲守,那么中位數(shù)就是所有數(shù)值排序之后位于中間的數(shù)值疑务。如果從數(shù)據(jù)流中讀出偶數(shù)個數(shù)值,那么中位數(shù)就是所有數(shù)值排序之后中間兩個數(shù)的平均值梗醇。
    import java.util.*;
    public class Solution {
        int count = 0;
        private PriorityQueue<Integer> minHeap = new PriorityQueue<>();
        private PriorityQueue<Integer> maxHeap = new PriorityQueue<>(15,new Comparator<Integer>() {
            @Override
            public int compare(Integer o1, Integer o2) {
                return o2 - o1;
            }
        });
    
        public void Insert(Integer num) {
            if((count & 1) == 0){
                if(!maxHeap.isEmpty() && maxHeap.peek() > num) {
                    maxHeap.offer(num);
                    num = maxHeap.poll();
                }
                minHeap.offer(num);
                
            }else {
                if(!minHeap.isEmpty() && minHeap.peek() < num){
                    minHeap.offer(num);
                    num = minHeap.poll();
                }
                maxHeap.offer(num);
               
            }
            ++count;
        }
    
        public Double GetMedian() {
    
            if((count & 1) == 1)
                return Double.valueOf(minHeap.peek());
            else 
                return Double.valueOf(minHeap.peek() + maxHeap.peek())/ 2;
        }
    }
64.題目描述:給定一個數(shù)組和滑動窗口的大小知允,找出所有滑動窗口里數(shù)值的最大值。例如叙谨,如果輸入數(shù)組{2,3,4,2,6,2,5,1}及滑動窗口的大小3温鸽,那么一共存在6個滑動窗口,他們的最大值分別為{4,4,6,6,6,5}手负; 針對數(shù)組{2,3,4,2,6,2,5,1}的滑動窗口有以下6個: {[2,3,4],2,6,2,5,1}涤垫, {2,[3,4,2],6,2,5,1}, {2,3,[4,2,6],2,5,1}竟终, {2,3,4,[2,6,2],5,1}蝠猬, {2,3,4,2,[6,2,5],1}, {2,3,4,2,6,[2,5,1]}衡楞。
    import java.util.*;
    public class Solution {
     public static ArrayList<Integer> maxInWindows(int [] num, int size)
        {
            ArrayList<Integer> list = new ArrayList<>();
            if(num == null ||size == 0 || num.length < size)
                return list;
    
            LinkedList<Integer> queue = new LinkedList<>();
            for(int i=0; i<num.length; i++){
    
    
                while(!queue.isEmpty()&& num[i] > num[queue.getLast()])
                    queue.pollLast();
    
                queue.offerLast(i);
    
                 if(i - queue.getFirst() >= size)
                     queue.pollFirst();
    
                if(i >= size-1)
                    list.add(num[queue.peek()]);
            }
            return list;
        }
    }
65.題目描述:請設(shè)計一個函數(shù)吱雏,用來判斷在一個矩陣中是否存在一條包含某字符串所有字符的路徑。路徑可以從矩陣中的任意一個格子開始瘾境,每一步可以在矩陣中向左歧杏,向右,向上迷守,向下移動一個格子犬绒。如果一條路徑經(jīng)過了矩陣中的某一個格子,則該路徑不能再進(jìn)入該格子兑凿。 例如[a b c e s f c s a d e e]是3*4矩陣凯力,其包含字符串"bcced"的路徑,但是矩陣中不包含“abcb”路徑礼华,因?yàn)樽址牡谝粋€字符b占據(jù)了矩陣中的第一行第二個格子之后咐鹤,路徑不能再次進(jìn)入該格子。
    public class Solution {
        public boolean hasPath(char[] matrix, int rows, int cols, char[] str)
        {
            int[] flag = new int[matrix.length];
            for(int i=0; i<rows; i++){
                for(int j=0; j<cols; j++){
    
                    if(help(matrix,i,j, rows,cols,str,flag,0))
                        return true;
                }
            }
    
            return false;
        }
    
        public boolean help(char[] matrix, int i, int j, int rows, int cols, char[] str, int[] flag, int k){
            int index = i * cols + j;
            if(i<0 || i>=rows || j<0 || j >= cols || flag[index] == 1 || str[k] != matrix[index])
                return false;
            if(k == str.length-1)
                return true;
    
            flag[index] = 1;
            if(help(matrix,i-1,j,rows,cols,str,flag,k+1) || help(matrix,i+1,j,rows,cols,str,flag,k+1)
                    || help(matrix,i,j-1,rows,cols,str,flag,k+1) ||help(matrix,i,j+1,rows,cols,str,flag,k+1))
                return true;
            flag[index] = 0;
            return false;
        }
    }
66.題目描述:地上有一個m行和n列的方格圣絮。一個機(jī)器人從坐標(biāo)0,0的格子開始移動祈惶,每一次只能向左,右,上捧请,下四個方向移動一格凡涩,但是不能進(jìn)入行坐標(biāo)和列坐標(biāo)的數(shù)位之和大于k的格子。 例如疹蛉,當(dāng)k為18時活箕,機(jī)器人能夠進(jìn)入方格(35,37),因?yàn)?+5+3+7 = 18可款。但是育韩,它不能進(jìn)入方格(35,38),因?yàn)?+5+3+8 = 19筑舅。請問該機(jī)器人能夠達(dá)到多少個格子座慰?
    public class Solution {
      public int movingCount(int threshold, int rows, int cols)
        {
            int[][] move = new int[rows][cols];
            return moveing(threshold, 0, 0, rows, cols, move);
        }
    
        public int moveing(int threshold, int i, int j,int rows, int cols, int[][] move){
            if(i < 0 || j <0 || i>=rows || j >= cols || !isCanMove(i,j, threshold) || move[i][j] == 1)
                return 0;
            move[i][j] = 1;
            return moveing(threshold, i+1, j, rows, cols, move)
            +moveing(threshold, i-1, j, rows, cols, move)+
            moveing(threshold, i, j-1, rows, cols, move)+
            moveing(threshold, i, j+1, rows, cols, move)+1;
        }
    
        public boolean isCanMove(int rows, int cols, int threshold){
            int sum = 0;
            while(rows > 0){
                sum += rows % 10;
                rows = rows/ 10;
            }
            while(cols >0){
                sum += cols % 10;
                cols = cols /10;
            }
            if(sum <= threshold)
                return true;
            return false;
        }
    }
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市翠拣,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌游盲,老刑警劉巖误墓,帶你破解...
    沈念sama閱讀 206,214評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異益缎,居然都是意外死亡谜慌,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,307評論 2 382
  • 文/潘曉璐 我一進(jìn)店門莺奔,熙熙樓的掌柜王于貴愁眉苦臉地迎上來欣范,“玉大人,你說我怎么就攤上這事令哟∧涨恚” “怎么了?”我有些...
    開封第一講書人閱讀 152,543評論 0 341
  • 文/不壞的土叔 我叫張陵屏富,是天一觀的道長晴竞。 經(jīng)常有香客問我,道長狠半,這世上最難降的妖魔是什么噩死? 我笑而不...
    開封第一講書人閱讀 55,221評論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮神年,結(jié)果婚禮上已维,老公的妹妹穿的比我還像新娘。我一直安慰自己已日,他們只是感情好垛耳,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,224評論 5 371
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著,像睡著了一般艾扮。 火紅的嫁衣襯著肌膚如雪既琴。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,007評論 1 284
  • 那天泡嘴,我揣著相機(jī)與錄音甫恩,去河邊找鬼。 笑死酌予,一個胖子當(dāng)著我的面吹牛磺箕,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播抛虫,決...
    沈念sama閱讀 38,313評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼松靡,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了建椰?” 一聲冷哼從身側(cè)響起雕欺,我...
    開封第一講書人閱讀 36,956評論 0 259
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎棉姐,沒想到半個月后屠列,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,441評論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡伞矩,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,925評論 2 323
  • 正文 我和宋清朗相戀三年笛洛,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片乃坤。...
    茶點(diǎn)故事閱讀 38,018評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡苛让,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出湿诊,到底是詐尸還是另有隱情狱杰,我是刑警寧澤,帶...
    沈念sama閱讀 33,685評論 4 322
  • 正文 年R本政府宣布枫吧,位于F島的核電站浦旱,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏九杂。R本人自食惡果不足惜颁湖,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,234評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望例隆。 院中可真熱鬧甥捺,春花似錦、人聲如沸镀层。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,240評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至吴侦,卻和暖如春屋休,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背备韧。 一陣腳步聲響...
    開封第一講書人閱讀 31,464評論 1 261
  • 我被黑心中介騙來泰國打工劫樟, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人织堂。 一個月前我還...
    沈念sama閱讀 45,467評論 2 352
  • 正文 我出身青樓叠艳,卻偏偏與公主長得像,于是被迫代替她去往敵國和親易阳。 傳聞我的和親對象是個殘疾皇子附较,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,762評論 2 345

推薦閱讀更多精彩內(nèi)容