2020年3月14日 星期六

[LeetCode] 28. Implement strStr() 解題思路* (Easy)



這題是要呈現 indexOf 的邏輯,如果不匹配則會返回 -1。



LeetCode 題目連結


https://leetcode.com/problems/implement-strstr/

題目

Implement strStr().
Return the index of the first occurrence of needle in haystack, or -1 if needle is not part of haystack.
Example 1:
Input: haystack = "hello", needle = "ll"
Output: 2
Example 2:
Input: haystack = "aaaaa", needle = "bba"
Output: -1
Clarification:
What should we return when needle is an empty string? This is a great question to ask during an interview.
For the purpose of this problem, we will return 0 when needle is an empty string. This is consistent to C's strstr() and Java's indexOf().

Accept 作法

這題表面上好像很好寫,但很容易遺漏一些 case ,要小心。


Runtime: 0 ms
Memory: 38.6 MB

Java
  1. class Solution {
  2. public int strStr(String haystack, String needle) {
  3. if(needle.length() == 0 && haystack.length() == 0)
  4. return 0;
  5. if(needle.length() == 0){
  6. return 0;
  7. }
  8. if(needle.length() > haystack.length()){
  9. return -1;
  10. }
  11. if(needle.equals(haystack)){
  12. return 0;
  13. }
  14. int size = haystack.length() - needle.length();
  15. for(int i = 0;i <= size;i++){
  16. String result = haystack.substring(i,i+needle.length());
  17. if(result.equals(needle)){
  18. return i;
  19. }
  20. }
  21. return -1;
  22. }
  23. }
  24.  


更多 LeetCode 相關資源


複習程式面試書籍


除了 LeetCode 練習外,我也入手了這本,題庫來自真正的面試,並非摘自教科書。它們反映出頂尖公司真正會出的題目,你可以藉此做好充分準備

需要的話可以看看,寫得很仔細。



書名:提升程式設計師的面試力:189道面試題目與解答




相關 LeetCode文章一律會放在 程式解題 標籤分類,歡迎持續追蹤。


沒有留言:

張貼留言