正则表达式匹配 (Regular Expression Matching )

本文介绍了一种正则表达式匹配的实现方法,通过支持 '.' 和 '*' 的使用,能够匹配任意单个字符或零个及以上的前导元素。文章详细解析了 Go 语言中如何递归地进行字符串与模式的匹配,包括初始化数组、递归匹配过程以及主函数调用。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

题目

Given an input string (s) and a pattern (p), implement regular expression matching with support for '.' and '*'.

'.' Matches any single character.
'*' Matches zero or more of the preceding element.

The matching should cover the entire input string (not partial).

Note:

  • s could be empty and contains only lowercase letters a-z.
  • p could be empty and contains only lowercase letters a-z, and characters like . or *.

Example 1:

Input:
s = "aa"
p = "a"
Output: false
Explanation: "a" does not match the entire string "aa".

我的代码

package main

import "fmt"

const (
	Match    = 1
	NotMatch = 0
	Default  = -1
)

var result [][]int

func isMatch(s string, p string) bool {
	initArray(s, p)
	return match(s, p, 0, 0)
}

func match(s, p string, sIndex, pIndex int) bool {
	matchResult := -1
	fmt.Println(sIndex, pIndex)
	if result[sIndex][pIndex] == Default {
		if len(p) == pIndex {
			if sIndex == len(s) {
				matchResult = Match
			} else {
				matchResult = NotMatch
			}
		} else {
			firstMatch := false
			if sIndex < len(s) && (p[pIndex] == '.' || p[pIndex] == s[sIndex]) {
				firstMatch = true
			}
			if pIndex+1 < len(p) && p[pIndex+1] == '*' {
				if match(s, p, sIndex, pIndex+2) || (firstMatch && match(s, p, sIndex+1, pIndex)) {
					matchResult = Match
				}
			} else {
				if firstMatch && match(s, p, sIndex+1, pIndex+1) {
					matchResult = Match
				}
			}
		}
		result[sIndex][pIndex] = matchResult
	}

	return result[sIndex][pIndex] == 1
}

func initArray(s string, p string) {
	var re [][]int
	for i := 0; i <= len(s); i++ {
		var temp []int
		for j := 0; j <= len(p); j++ {
			temp = append(temp, -1)
		}
		re = append(re, temp)
	}
	result = re
}

func main() {
	fmt.Println(isMatch("asdb", ".*"))
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值