劍指offer(刷題41-50)--c++,Python版本

文章目錄

  • 目錄
    • 第41題:
      • 解題思路:
      • 代碼實現:
        • c++
        • python
    • 第42題:
      • 解題思路:
      • 代碼實現:
        • c++
        • python
    • 第43題:
      • 解題思路:
      • 代碼實現:
        • c++
        • python
    • 第44題:
      • 解題思路:
      • 代碼實現:
        • c++
        • python
    • 第45題:
      • 解題思路:
      • 代碼實現:
        • c++
        • python
    • 第46題:
      • 解題思路:
      • 代碼實現:
        • c++
        • python
    • 第47題:
      • 解題思路:
      • 代碼實現:
        • c++
        • python
    • 第48題:
      • 解題思路:
      • 代碼實現:
        • c++
        • python
    • 第49題:
      • 解題思路:
      • 代碼實現:
        • c++
        • python
    • 第50題:
      • 解題思路:
      • 代碼實現:
        • c++
        • python

目錄

第41題:

輸入一個遞增排序的數組和一個數字S,在數組中查找兩個數,使得他們的和正好是S,如果有多對數字的和等于S,輸出兩個數的乘積最小的。

解題思路:

  • 暴力法:就是雙層循環遍歷,這個方法就沒有考慮到題目中遞增排序的信息。
  • 使用兩個指針,分別指向頭和尾,當兩個數相聚越遠,則其乘機越小,所以按照頭尾指針兩邊夾方式,第一次出現相等的兩個數乘機肯定最小。

代碼實現:

c++

vector<int> FindNumbersWithSum(vector<int> array,int sum) {vector<int> resArray;if(array.size() <= 1){return resArray;}int tempL=0;int tempR = array.size() - 1;while(tempL < tempR){if(array[tempL] + array[tempR] == sum){resArray.push_back(array[tempL]);resArray.push_back(array[tempR]);break;}else if(array[tempL] + array[tempR] < sum){tempL++;}else{tempR --;}}return resArray;
}

運行時間:3ms

占用內存:484k

python

# -*- coding:utf-8 -*-
class Solution:def FindNumbersWithSum(self, array, tsum):# write code heretempList = []for i in range(len(array)):for j in range(i,len(array)):if array[i] + array[j] == tsum:tempList.append([array[i] , array[j]])if tempList == []:return []tempData = tempList[0][0] * tempList[0][1]littleNum = tempList[0][0]bigNum = tempList[0][1]for item in tempList:if item[0] * item[1] < tempData:littleNum = item[0]bigNum = item[1]return littleNum,bigNum

運行時間:28ms

占用內存:5732k

第42題:

匯編語言中有一種移位指令叫做循環左移(ROL),現在有個簡單的任務,就是用字符串模擬這個指令的運算結果。對于一個給定的字符序列S,請你把其循環左移K位后的序列輸出。例如,字符序列S=”abcXYZdef”,要求輸出循環左移3位后的結果,即“XYZdefabc”。是不是很簡單?OK,搞定它!

解題思路:

  • 循環左移就像循環隊列中的入隊操作,只需要定義循環后的index = (index + n) % strLen即可。時間復雜度為O(N)

代碼實現:

c++

class Solution {
public:string LeftRotateString(string str, int n) {int strLen = str.length();string resStr(str);for(int i=0 ; i < strLen ; i++){resStr[i] = str[(i+n)%strLen];}return resStr;}
};

運行時間:3ms

占用內存:488k

python

# -*- coding:utf-8 -*-
class Solution:def LeftRotateString(self, s, n):# write code herestrLen = len(s)tempList = []for i in range(strLen):tempList.append(s[((i+n)%strLen)])return "".join(tempList)

運行時間:24ms

占用內存:5732k

第43題:

牛客最近來了一個新員工Fish,每天早晨總是會拿著一本英文雜志,寫些句子在本子上。同事Cat對Fish寫的內容頗感興趣,有一天他向Fish借來翻看,但卻讀不懂它的意思。例如,“student. a am I”。后來才意識到,這家伙原來把句子單詞的順序翻轉了,正確的句子應該是“I am a student.”。Cat對一一的翻轉這些單詞順序可不在行,你能幫助他么?

解題思路:

  • 首先將字符串按照空格進行分割,并保存為數組,然后交換數組的前面和后面的數字,最好將數字轉換為字符串。
  • 使用棧輔助

代碼實現:

c++

class Solution {
public:string ReverseSentence(string str) {string res = "", tmp = "";for(unsigned int i = 0; i < str.size(); ++i){if(str[i] == ' ') res = " " + tmp + res, tmp = "";else tmp += str[i];}if(tmp.size()) res = tmp + res;return res;}
};

運行時間:3ms

占用內存:604k

python

# -*- coding:utf-8 -*-
class Solution:def ReverseSentence(self, s):# write code herestrList = s.split(" ")for i in range(len(strList)/2):temp = strList[i]strList[i] = strList[len(strList) - 1 - i]strList[len(strList) - 1 - i] = tempreturn " ".join(strList)

運行時間:27ms

占用內存:5856k

第44題:

LL今天心情特別好,因為他去買了一副撲克牌,發現里面居然有2個大王,2個小王(一副牌原本是54張_)…他隨機從中抽出了5張牌,想測測自己的手氣,看看能不能抽到順子,如果抽到的話,他決定去買體育彩票,嘿嘿!!“紅心A,黑桃3,小王,大王,方片5”,“Oh My God!”不是順子…LL不高興了,他想了想,決定大\小 王可以看成任何數字,并且A看作1,J為11,Q為12,K為13。上面的5張牌就可以變成“1,2,3,4,5”(大小王分別看作2和4),“So Lucky!”。LL決定去買體育彩票啦。 現在,要求你使用這幅牌模擬上面的過程,然后告訴我們LL的運氣如何, 如果牌能組成順子就輸出true,否則就輸出false。為了方便起見,你可以認為大小王是0。

解題思路:

  • 對數組進行從小到大排序,然后統計0的個數,針對非0的數值需要滿足三個條件:最大值與最小值的差值小于5 ; 不存在重復數字,數組的長度為5

代碼實現:

c++

class Solution {
public:bool IsContinuous( vector<int> numbers ) {if(numbers.size() !=5 ){return false;}sort(numbers.begin(),numbers.end());int zeroCount = 0;for(int i = 0;i<numbers.size() ; i++){if(numbers[i] == 0) zeroCount ++;}for(int i = zeroCount;i< numbers.size()-1 ; i++){if(numbers[i+1] - numbers[i] == 0){return false;}}if(numbers[numbers.size()-1] - numbers[zeroCount] < 5) return true;else return false;   }
};

運行時間:4ms

占用內存:604k

python

# -*- coding:utf-8 -*-
class Solution:def isReat(self,dataList):for i in range(len(dataList)-1):if (dataList[i+1] - dataList[i]) == 0:return Truereturn Falsedef IsContinuous(self, numbers):# write code hereif len(numbers) != 5:return Falsenumbers.sort()zeroCount = 0for i in numbers:if i==0:zeroCount += 1if self.isReat(numbers[zeroCount:]):return Falseif numbers[-1] - numbers[zeroCount] < 5:return Trueelse:return False

運行時間:30ms

占用內存:5852k

第45題:

每年六一兒童節,牛客都會準備一些小禮物去看望孤兒院的小朋友,今年亦是如此。HF作為牛客的資深元老,自然也準備了一些小游戲。其中,有個游戲是這樣的:首先,讓小朋友們圍成一個大圈。然后,他隨機指定一個數m,讓編號為0的小朋友開始報數。每次喊到m-1的那個小朋友要出列唱首歌,然后可以在禮品箱中任意的挑選禮物,并且不再回到圈中,從他的下一個小朋友開始,繼續0…m-1報數…這樣下去…直到剩下最后一個小朋友,可以不用表演,并且拿到牛客名貴的“名偵探柯南”典藏版(名額有限哦!!_)。請你試著想下,哪個小朋友會得到這份禮品呢?(注:小朋友的編號是從0到n-1)

解題思路:

  • 根據公式out = (start + m) % n - 1,將小朋友看成一個數組,每一選中一個人就刪除數組中的一個數字,同時移動數組中的一些元素,然后重新賦值start , n ,最后判斷數組只有一個元素的時候,返回此時數組的值便可。

代碼實現:

c++

class Solution {
public:int LastRemaining_Solution(int n, int m){if(n==0 || m==0) return -1;vector<int> dataList;for(int i =0 ;i < n ; i++) dataList.push_back(i);int start = 0;  //vec.erase(vec.begin()+idx);while(dataList.size() > 1){int outIndex = ((start+m)%dataList.size()) - 1;if(outIndex < 0) outIndex = outIndex + dataList.size();start = outIndex;dataList.erase(dataList.begin()+outIndex);}return dataList[0];}
};

運行時間:4ms

占用內存:504k

python

# -*- coding:utf-8 -*-
class Solution:def LastRemaining_Solution(self, n, m):# write code hereif n==0 or m==0:return -1start = 0 tempList = [i for i in range(n)]while len(tempList) > 1:out = ((start + m) % len(tempList)) - 1if out < 0:out = out + len(tempList)start = outdel tempList[out]return tempList[0]

運行時間:28ms

占用內存:5752k

第46題:

求1+2+3+…+n,要求不能使用乘除法、for、while、if、else、switch、case等關鍵字及條件判斷語句(A?B:C)。

解題思路:

  • 由于本題中規定不能用乘除法,循環和選擇,所以自然想到的是用遞歸和位操作來計算了。但是由于沒法用if判斷,所以遞歸的終止條件是一個棘手的問題,于是我們在想到了短路求值原理。
    需利用邏輯與的短路特性實現遞歸終止。 2.當n==0時,(n>0)&&((sum+=Sum_Solution(n-1))>0)只執行前面的判斷,為false,然后直接返回0;
    3.當n>0時,執行sum+=Sum_Solution(n-1),實現遞歸計算Sum_Solution(n)。

代碼實現:

c++

class Solution {
public:int Sum_Solution(int n) {int ans = n;ans && (ans += Sum_Solution(n - 1));return ans;}
};

運行時間:4ms

占用內存:480k

python

# -*- coding:utf-8 -*-

第47題:

寫一個函數,求兩個整數之和,要求在函數體內不得使用+、-、*、/四則運算符號。

解題思路:

  • 根據題意來看是通過位操作實現兩個整數的加法。

代碼實現:

c++

class Solution {
public:int Add(int num1, int num2){int x = num1 ^ num2;int y = num1 & num2;while(y!=0){y = y << 1;int temp = x;x = x^y;y = temp & y;}return x;}
};

運行時間:3ms

占用內存:396k

python

# -*- coding:utf-8 -*-
class Solution:def Add(self, num1, num2):# write code hereMAX = 0X7FFFFFFFMASK = 0XFFFFFFFFans = num1while num2 !=0:ans = (num1 ^ num2) & MASKnum2 = ((num1 & num2)<<1) & MASKnum1 = ansreturn ans if ans<=MAX else ~(ans ^ MASK)

運行時間:28ms

占用內存:5848k

第48題:

將一個字符串轉換成一個整數(實現Integer.valueOf(string)的功能,但是string不符合數字要求時返回0),要求不能使用字符串轉換整數的庫函數。 數值為0或者字符串不是一個合法的數值則返回0。

解題思路:

  • 將字符串轉換為字符串數組,然后通過強制類型轉換將字符轉換為數字,然后根據字符的索引,求和得到十進制的表示,但是得對一些特殊情況做處理。

代碼實現:

c++

int StrToInt(string str) {int lenStr = str.length();if(lenStr == 0){return 0;}char dataFlag = '0';vector<int>  tempArray;if(str[0] == '+' || str[0]=='-'){dataFlag = str[0];for(int i = 1 ;i < lenStr ; i++){if(int(str[i]) < 48 || int(str[i]) > 57) return 0;else tempArray.push_back(int(str[i])-48);}}else{for(int i =0 ; i < lenStr ; i++){if(int(str[i]) < 48 || int(str[i]) > 57) return 0;else tempArray.push_back(int(str[i])-48);}}int sum = 0;if(dataFlag == '+' || dataFlag == '0'){for(int i = 0 ; i < tempArray.size() ; i++){sum += tempArray[i] * pow(10,tempArray.size() - 1 - i);}return sum;}else if (dataFlag == '-'){for(int i = 0 ; i < tempArray.size() ; i++){sum += tempArray[i] * pow(10,tempArray.size() - 1 - i);}return -sum;}  
}

python

# -*- coding:utf-8 -*-
class Solution:def StrToInt(self, s):# write code heretempStrList = list(s)if tempStrList == []:return 0for dataIndex in range(len(tempStrList)):if tempStrList[dataIndex].isalpha():if (tempStrList[dataIndex]=="+" or tempStrList[dataIndex]=="-") and dataIndex == 0:passelse:return 0sum = 0if tempStrList[0] == "+":for i in range(1,len(tempStrList)):sum += int(tempStrList[i]) * (10**(len(tempStrList)-i-1))return sumelif tempStrList[0] == "-":for i in range(1,len(tempStrList)):sum += int(tempStrList[i]) * (10**(len(tempStrList)-i-1))return -sumelse:for i in range(len(tempStrList)):sum += int(tempStrList[i]) * (10**(len(tempStrList)-i-1))return sum

運行時間:31ms

占用內存:5728k

第49題:

在一個長度為n的數組里的所有數字都在0到n-1的范圍內。 數組中某些數字是重復的,但不知道有幾個數字是重復的。也不知道每個數字重復幾次。請找出數組中任意一個重復的數字。 例如,如果輸入長度為7的數組{2,3,1,0,2,5,3},那么對應的輸出是第一個重復的數字2。

解題思路:

  • 使用2個指針,一個大指針和一個小指針,然后比較兩個值的大小,重復則直接退出。
    

代碼實現:

c++

class Solution {
public:// Parameters://        numbers:     an array of integers//        length:      the length of array numbers//        duplication: (Output) the duplicated number in the array number// Return value:       true if the input is valid, and there are some duplications in the array number//                     otherwise falsebool duplicate(int numbers[], int length, int* duplication) {if(length<=1) return false;int little = 0 , big = 1;for(int i = 0 ;i < length ; i++){for(int j = i + 1 ; j < length ; j++){if(numbers[i] == numbers[j]){*duplication = numbers[i];return true;}}}return false;}
};

運行時間:3ms

占用內存:468k

python

# -*- coding:utf-8 -*-

第50題:

給定一個數組A[0,1,…,n-1],請構建一個數組B[0,1,…,n-1],其中B中的元素B[i]=A[0]A[1]…*A[i-1]A[i+1]…*A[n-1]。不能使用除法。

解題思路:

  • 參考網上:
    B[i]的值可以看作下圖的矩陣中每行的乘積。
    下三角用連乘可以很容求得,上三角,從下向上也是連乘。
    因此我們的思路就很清晰了,先算下三角中的連乘,即我們先算出B[i]中的一部分,然后倒過來按上三角中的分布規律,把另一部分也乘進去
    在這里插入圖片描述

代碼實現:

c++

class Solution {
public:vector<int> multiply(const vector<int>& A) {int n=A.size();vector<int> b(n);int ret=1;for(int i=0;i<n;ret*=A[i++]){b[i]=ret;}ret=1;for(int i=n-1;i>=0;ret*=A[i--]){b[i]*=ret;}return b;}
};

運行時間:4ms

占用內存:376k

python

# -*- coding:utf-8 -*-

本文來自互聯網用戶投稿,該文觀點僅代表作者本人,不代表本站立場。本站僅提供信息存儲空間服務,不擁有所有權,不承擔相關法律責任。
如若轉載,請注明出處:http://www.pswp.cn/news/445403.shtml
繁體地址,請注明出處:http://hk.pswp.cn/news/445403.shtml
英文地址,請注明出處:http://en.pswp.cn/news/445403.shtml

如若內容造成侵權/違法違規/事實不符,請聯系多彩編程網進行投訴反饋email:809451989@qq.com,一經查實,立即刪除!

相關文章

redis——持久化

因為redis是內存數據庫&#xff0c;他把數據都存在內存里&#xff0c;所以要想辦法實現持久化功能。 RDB RDB持久化可以手動執行&#xff0c;也可以配置定期執行&#xff0c;可以把某個時間的數據狀態保存到RDB文件中&#xff0c;反之&#xff0c;我們可以用RDB文件還原數據庫…

redis原理總結

數據結構&#xff08;字典、鏈表、字符串&#xff09; 數據結構&#xff08;整數集合&#xff0c;壓縮列表&#xff09; 數據結構&#xff08;跳表介紹和手撕&#xff09; LRU介紹和實現 對象&#xff08;字符串對象、列表對象、哈希對象、集合對象、有序集合總結&#xff…

劍指offer(刷題51-60)--c++,Python版本

文章目錄目錄第51題&#xff1a;解題思路&#xff1a;代碼實現&#xff1a;cpython第52題&#xff1a;解題思路&#xff1a;代碼實現&#xff1a;cpython第53題&#xff1a;解題思路&#xff1a;代碼實現&#xff1a;cpython第54題&#xff1a;解題思路&#xff1a;代碼實現&am…

2017第一屆河北省大學生程序設計競賽題解

超級密碼 小明今年9歲了&#xff0c;最近迷上了設計密碼&#xff01;今天&#xff0c;他又設計了一套他認為很復雜的密碼&#xff0c;并且稱之為“超級密碼”. 說實話&#xff0c;這套所謂的“超級密碼”其實并不難&#xff1a;對于一個給定的字符串&#xff0c;你只要提取其中…

劍指offer(刷題61-65)--c++,Python版本

文章目錄目錄第61題&#xff1a;解題思路&#xff1a;代碼實現&#xff1a;cpython第62題&#xff1a;解題思路&#xff1a;代碼實現&#xff1a;cpython第63題&#xff1a;解題思路&#xff1a;代碼實現&#xff1a;cpython第64題&#xff1a;解題思路&#xff1a;代碼實現&am…

2018第二屆河北省大學生程序設計競賽題解

icebound的賬單 題目描述 icebound從小就有記賬的習慣。又到了月末icebound統計資金狀況的時候。icebound每個月除了不停的揮霍以外&#xff0c;有時他會良心發現&#xff0c;勤工儉學&#xff0c;因此會有一些微薄的收入。然而icebound數學不好&#xff0c;需要你來幫助他統計…

大數的四則運算(加法、減法、乘法、除法)

大數的四則運算&#xff08;加法、減法、乘法、除法&#xff09; 前言&#xff1a; 在計算機中數字表示的范圍是有限制的&#xff0c;比如我們熟知的 int、float、double 等數據類型所能表示的范圍都是有限的&#xff0c;如果我們要對位數達到幾十位、幾百位、上千位的大整數進…

數組基操三連(1)

題目&#xff1a; 給定一個數組arr&#xff0c;求出需要排序的最短子數組長度 要求&#xff1a; 時間o(n),空間o(1) 思路&#xff1a; 有序的數組中&#xff0c;任意一個數字&#xff0c;一定小于左邊的數大于右邊的數。 我們找到的需要排序的子數組&#xff0c;顯然是比右邊…

IT互聯網公司的筆試的輸入輸出- c++ python

文章目錄目錄c方式1&#xff1a;方式2&#xff1a;Python方式1&#xff1a;方式2&#xff1a;方式3&#xff1a;目錄 c 方式1&#xff1a; 第一種情況&#xff1a;輸入n個數&#xff0c;存放在數組中 #include <iostream> #include <vector> using namespace st…

隨機過程1

隨機過程1概述1.參考書目2.主要內容3.概率論--基本概念回顧3.1對“不確定性”的認識3.2 應對“不確定性”應該怎么做3.3隨機變量&#xff08;Random Variable&#xff09;3.4分布函數&#xff08;Distribution Function&#xff09;3.5概率密度&#xff08;Density&#xff09;…

數組基操三連(4)

題目一 給定一個長度為N的整型數組arr&#xff0c;其中有N個互不相等的自然數1~N 請實現arr的排序 但是不要把下標0~N-1位置上的數值通過直接賦值的方式替換成1~N。 要求&#xff1a;時間復雜度為O(N)&#xff0c;額外空間復雜度為O(1)。 思路&#xff1a;從左向右檢查&…

Linux(1)-touch,mkdir,rm,mv,cp,ls,cd,cat

Linux1-實用終端命令1. touch, mkdir2. rm, mv, cp3. ls(通配符),cd(絕對/相對路徑)4. cat, more/less文件內容瀏覽文件/目錄-增刪查改, 文件內容查看.1. touch, mkdir touch新文件 &#xff1a;在當前文件夾下&#xff0c;創建文件。文件不存在則創建新文件&#xff1b;文件存…

java常用類介紹及源碼閱讀(ArrayList)

java.util 類 ArrayList<E> 繼承關系&#xff1a; java.lang.Objectjava.util.AbstractCollection<E>java.util.AbstractList<E>java.util.ArrayList<E>List 接口的動態數組的實現。 實現了所有可選列表操作&#xff0c;并允許包括 null 在內的所有…

tests1

ls,cd,tardone

數組精選題目三連(5)

子數組的最大累加和問題 輸入一個整形數組&#xff0c;求數組中連續的子數組使其和最大。比如&#xff0c;數組x 應該返回 x[2..6]的和187. 這四個代碼完成的功能都是求最大子數組&#xff08;注意用詞準確&#xff0c;子數組連續&#xff0c;子序列可以不連續&#xff09;。…

大數據學習(1)-大數據概述

文章目錄目錄大數據產生背景大數據概念大數據影響大數據應用大數據關鍵技術大數據產業大數據&#xff0c;云計算&#xff0c;物聯網關系云計算物聯網大數據&#xff0c;物聯網&#xff0c;云計算三者之間聯系目錄 大數據產生背景 三次信息化浪潮 根據IBM前首席執行官郭士納福…