算法-leetcode-65-Valid Number

上代码:

# coding:utf-8

__author__ = "sn"

"""
Validate if a given string is numeric.

Some examples:
"0" => true
" 0.1 " => true
"abc" => false
"1 a" => false
"2e10" => true

Note: It is intended for the problem statement to be ambiguous. You should gather all requirements up front before implementing one.

"""

"""
思路:

1.float()...

2.去空格,正则匹配
首位是否为+或-
数字
^[0-9]{1,}[\.]{0,1}[0-9]{0,}$
^\.[0-9]{1,}$
科学计数
^[0-9]{1,}[\.]{0,1}[0-9]*e[0-9]+$

3.类似正则
合法的数字表达式有以下几种:
全数字
.全数字
数字.数字
数字e[+-]数字

按.和e作分割点,分别进行判断是否合规
先将两端的空格去掉,首字符是否为+-
判断是否数字,如果不是直接返回False,
遇到'.',判断.后是否有一列数字
遇到‘e',然后判断'e'以后是否有’+‘,’-‘
判断后续的是否是数字。
使用 if else 即可
注意边界情况;

4.把方法3的过程抽象化,得到有穷状态自动机DFA
结合本题,字符串有9种状态比较合适:
0 无输入或只有空格
1 输入了数字

2 无数字,只有dot

3只输入了符号+或-
4 有数字有dot
5 e或者E输入后的状态
6 输入e之后输入sign的状态
7 输入e之后输入数字的状态
8 有效数字输入后,输入空格判断合法输入结束

状态机简图:

"""

class Solution:

  #方法3
  def isNumber(self, s):
    """
    :type s: str
    :rtype: bool
    """

    begin, last = 0, len(s)-1
    # 去首尾空格
    while begin <= last and s[begin] == " ":
      begin += 1
    while last >= begin and s[last] == " ":
      last -= 1

    # 首位是否为+或-
    if begin < last and (s[begin] == "+" or s[begin] == "-"):
      begin += 1

    num, dot, exp = False, False, False
    

    # 主体校验
    while begin <= last:
      if s[begin] >= "0" and s[begin] <= "9":
        num = True
      elif s[begin] == ".":
        if dot or exp:
          return False
        dot = True
      elif s[begin] == "e" or s[begin] == "E":
        if exp or not num:
          return False
        exp, num = True, False
      elif s[begin] == "+" or s[begin] == "-":
        if not(s[begin-1] == "e" or s[begin-1] == "E"):
          return False
      else:
        return False
      begin += 1
    return num

# 方法4-1
# 有限状态自动机
  def isNumber(self, s):
    INVALID = 0;SPACE = 1; SIGN = 2; DIGIT = 3; DOT = 4; EXPONENT = 5;

    transitionTable = [[-1, 0, 3, 1, 2, -1],
      [-1, 8, -1, 1, 4, 5],
      [-1, -1, -1, 4, -1, -1],
      [-1, -1, -1, 1, 2, -1],
      [-1, 8, -1, 4, -1, 5],
      [-1, -1, 6, 7, -1, -1],
      [-1, -1, -1, 7, -1, -1],
      [-1, 8, -1, 7, -1, -1],
      [-1, 8, -1, -1, -1, -1]]

    state = 0; i = 0
    while i < len(s):
      inputtype = INVALID
      if s[i] == ' ':
        inputtype = SPACE
      elif s[i] == '-' or s[i] == '+':
        inputtype = SIGN
      elif s[i] in '0123456789':
        inputtype = DIGIT
      elif s[i] == '.':
        inputtype = DOT
      elif s[i] == 'e' or s[i] == 'E':
        inputtype = EXPONENT

      state = transitionTable[state][inputtype]
      if state == -1:
        return False
      else:
        i += 1
    return state == 1 or state == 4 or state == 7 or state == 8

# 方法4-2
# 换一种方式实现DFA
  def isNumber(self, s):
    """
    :type s: str
    :rtype: bool
    """
    # define a DFA
    state = [
      {"space": 0, "digit": 1, "sign": 3, ".": 2},
      {"digit": 1, "space": 8, "e": 5, ".": 4},
      {"digit": 4},
      {"digit": 1, ".": 2},
      {"digit": 4, "e": 5, "space": 8},
      {"digit": 7, "sign": 6},
      {"digit": 7},
      {"digit": 7, "space": 8},
      {"space": 8}]

    currentstate = 0
    for c in s:
      if c >= "0" and c <= "9":
        c = "digit"
      elif c == " ":
        c = "space"
      elif c in ["+", "-"]:
        c = "sign"
      elif c in ["e", "E"]:
        c = "e"
      # if c == ".":
        # c ="."

      if c not in state[currentstate].keys():
        return False
      currentstate = state[currentstate][c]

    if currentstate in [1, 4, 7, 8]:
      return True
    else:
      return False

if __name__ == "__main__":
  res = Solution()
  str_num = "4.7e7"
  result = res.isNumber(str_num)
  if result:
    print("is number.")
  else:
    print("is not number.")

算法-leetcode-65-Valid Number的更多相关文章

  1. [leetcode]65. Valid Number 有效数值

    Validate if a given string can be interpreted as a decimal number. Some examples:"0" => ...

  2. leetCode 65.Valid Number (有效数字)

    Valid Number  Validate if a given string is numeric. Some examples: "0" => true " ...

  3. [LeetCode] 65. Valid Number 验证数字

    Validate if a given string can be interpreted as a decimal number. Some examples:"0" => ...

  4. LeetCode 65 Valid Number

    (在队友怂恿下写了LeetCode上的一个水题) 传送门 Validate if a given string is numeric. Some examples: "0" =&g ...

  5. Leetcode 65 Valid Number 字符串处理

    由于老是更新简单题,我已经醉了,所以今天直接上一道通过率最低的题. 题意:判断字符串是否是一个合法的数字 定义有符号的数字是(n),无符号的数字是(un),有符号的兼容无符号的 合法的数字只有下列几种 ...

  6. [LeetCode] 65. Valid Number(多个标志位)

    [思路]该题题干不是很明确,只能根据用例来理解什么样的字符串才是符合题意的,本题关键在于几个标志位的设立,将字符串分为几个部分,代码如下: class Solution { public: strin ...

  7. 【LeetCode】65. Valid Number

    Difficulty: Hard  More:[目录]LeetCode Java实现 Description Validate if a given string can be interpreted ...

  8. 【leetcode】Valid Number

    Valid Number Validate if a given string is numeric. Some examples:"0" => true" 0.1 ...

  9. 【一天一道LeetCode】#65. Valid Number

    一天一道LeetCode 本系列文章已全部上传至我的github,地址:ZeeCoder's Github 欢迎大家关注我的新浪微博,我的新浪微博 欢迎转载,转载请注明出处 (一)题目 Validat ...

  10. 65. Valid Number

    题目: Validate if a given string is numeric. Some examples:"0" => true" 0.1 " = ...

随机推荐

  1. git 初次push

    1.本地仓库与远程仓库第一次同步时,一直同步不上 最后 git status ,发现有两个文件没提交 提交后再push即可 2.如果不行,再看一下其他情况

  2. [lua]紫猫lua教程-命令宝典-L1-01-03. 数值数据

    lua5.3在线手册地址  https://cloudwu.github.io/lua53doc/contents.html#contents 其实我们直接啃手册就够了 推荐如果有基础的先啃手册再看紫 ...

  3. 【 SSH 配置参考】

    applicationContext.xml <?xml version="1.0" encoding="UTF-8"?> <beans xm ...

  4. PHP基础学习笔记3

    一.检索表单信息 PHP 中的 $_GET 和 $_POST 变量用于检索表单中的信息,比如用户输入 提交的表单: <form action="welcome.php" me ...

  5. C++记录(一)

    1 extern 符表示该变量不是当前作用域定义的,用于声明. 如extern i;表示i不是当前作用域里的,是其他某个include的cpp文件里的变量. 2 int *p=0;相当于初始化p为空指 ...

  6. 获取表格数据转换为JSON字符串

    核心代码JavaScript代码: 方法一 function sc () { var myTable=document.getElementById("myTable"); //获 ...

  7. es6二进制数组--基础

    一.概念二进制数组由 ArrayBuffer对象 TypeArray 视图和DataView视图 三部分组成是javascript操作二进制数据的一个接口. 早在2011年2月就已经发布,但是由于ES ...

  8. 1、安装GPIO Zero(Installing GPIO Zero)

    学习目录:树莓派学习之路-GPIO Zero 官网地址:http://gpiozero.readthedocs.io/en/stable/installing.html 环境:UbuntuMeta-1 ...

  9. java 面试题 高阶版

    1.hash 算法问题 hash(n) /服务器个数 hash 算法在服务器增加或者减少的时候,数据存取位置为发生变化: 什么是一致性hash算法? 一致性hash算法对2^32 取模,整个Hash空 ...

  10. redis (一) --- 基本使用

    概述 redis是基于key-value 我们所说的数据类型实际是 key-value 中的 value .文章主要介绍的是redis 几个重要的数据类型的使用. 简单使用 //keys patter ...