zoukankan      html  css  js  c++  java
  • 算法练习题

    题目描述:

    实现 strStr() 函数。
    
    给定一个 haystack 字符串和一个 needle 字符串,在 haystack 字符串中找出 needle 字符串出现的第一个位置 (从0开始)。如果不存在,则返回  -1。
    
    示例 1:
    
    输入: haystack = "hello", needle = "ll"
    输出: 2
    示例 2:
    
    输入: haystack = "aaaaa", needle = "bba"
    输出: -1
    说明:
    
    当 needle 是空字符串时,我们应当返回什么值呢?这是一个在面试中很好的问题。
    
    对于本题而言,当 needle 是空字符串时我们应当返回 0 。这与C语言的 strstr() 以及 Java的 indexOf() 定义相符。
    
    来源:力扣(LeetCode)
    链接:https://leetcode-cn.com/problems/implement-strstr
    著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
    func strStr(haystack string, needle string) int {
        if len(haystack) == 0 && len(needle) == 0 {
            return 0
        }
        if len(haystack) == 0 && len(needle) != 0 {
            return -1
        }
        if len(haystack) != 0 && len(needle) == 0 {
            return 0
        }
        if len(needle) > len(haystack) {
            return -1
        }
      lenNeedle := len(needle)
      position := -1
      for i := 0; i < len(haystack); i ++ {
        if needle[0] == haystack[i] {
          position = i
          for j := 1; j < lenNeedle; j++ {
            if i + j >= len(haystack) || needle[j] != haystack[i + j] {
              position = -1
              break
            }
          }
          if (position != -1) {
            break
          }
        }
      }
      return position
    }
    优化代码:
    func strStr(haystack string, needle string) int {
        lenNeedle := len(needle)
        if lenNeedle == 0 {
            return 0
        }
    
        lenHaystack := len(haystack)
        if lenHaystack == 0 && lenHaystack < lenNeedle {
            return -1
        }
    
      for i := 0; i <= lenHaystack - lenNeedle; i ++ {
          if haystack[i: i+lenNeedle] == needle {
              return i
          }
      }
      return -1
    }
  • 相关阅读:
    redis持久化RDB和AOF
    线程同步的几种方法
    JRE和JDK的区别
    Spring-两种配置容器
    为什么String类是不可变的?
    Oracle 每五千条执行一次的sql语句
    Executor , ExecutorService 和 Executors
    常见框架单例、多例与线程安全性总结
    mysql 的S 锁和X锁的区别
    linux下使用shell脚本自动化部署项目
  • 原文地址:https://www.cnblogs.com/cjjjj/p/13214626.html
Copyright © 2011-2022 走看看