$strlog="c:\log\applog.txt";$e=$i=$w=0$tpath=Test-Path$strlogif(!$tpath){New-Item-Path"c:\log"-ItemTypedirNew-Item-Path$strlog-ItemTypefile}Get-EventLog-LogNameApplication|Out-File$strlogswitch-Wildcard-File$strlog{"*error*"{$e++}"*info*"{$i++}"*warn*"{$w++..
分类:
系统相关 时间:
2015-05-07 12:44:57
阅读次数:
212
问题分析
这道题目和之前的leetcode010:Regular Expression Matching 规则稍有不同,就是对于'*' 号这次代表的是匹配任意字符(包括空串),这样处理方式上完全改变,而且思路比较简单,先把通配符字符串组成部分分为两类:
******* ,连续的*,预处理的时候可以合并为一个*
abc?d?,字母或?组合,后面都简写为X
考虑到第二类必须匹配才有可能整个字符串匹配,所以分两种情况考虑就可以了。
通配符字符串只有******或者X
X*X*X或*X*X或者X*X*或者*X*这...
分类:
其他好文 时间:
2015-05-03 09:23:24
阅读次数:
137
代码:CXX:=g++CFLAGS:=-gTARGET:=xxx.exeSRCS:=$(wildcard*.cpp)OBJS:=$(patsubst%cpp,%o,$(SRCS))all:$(TARGET)%.o:%.cpp$(CXX)$(CFLAGS)-c$<$(TARGET):$(OBJS)$(...
分类:
其他好文 时间:
2015-04-13 00:23:14
阅读次数:
260
?基本框架:a) Make常用内嵌函数b) 多级目录Makefile的编写4.1Make常用内嵌函数函数调用的一般形式:$(function arguments(参数)) 1) $(wildcard PATTERN) : 匹配当前目录下指定模式的文件 例子:src=$(wildcar...
分类:
其他好文 时间:
2015-04-11 17:39:21
阅读次数:
117
题目地址:https://leetcode.com/problems/wildcard-matching/动态规划解答:public class Solution { public boolean isMatch(String s, String p) { if(p.length...
分类:
其他好文 时间:
2015-04-08 10:35:44
阅读次数:
145
Implement wildcard pattern matching with support for '?' and '*'.'?' Matches any single character.'*' Matches any sequence of characters (including th...
分类:
其他好文 时间:
2015-04-08 06:33:45
阅读次数:
123
Implement wildcard pattern matching with support for'?'and'*'.'?' Matches any single character.'*' Matches any sequence of characters (including the e...
分类:
其他好文 时间:
2015-04-07 07:09:42
阅读次数:
441
Implement wildcard pattern matching with support for '?' and '*'.
'?' Matches any single character.
'*' Matches any sequence of characters (including the empty sequence).
The matching should cove...
分类:
其他好文 时间:
2015-04-02 15:13:28
阅读次数:
111
希望弄懂:一. 泛型的好处二. 表述三. 的作用四. ,作为参数类型的作用五. wildcard嵌套 一. JDK1.5 引入了泛型,好处:1. 编译时,类型检查2. 避免类型转换例如,ArrayList list = new ArrayList();list.add("str1")System.o...
分类:
编程语言 时间:
2015-03-31 14:13:42
阅读次数:
170
问题描述:给定字符串s与模式串p,其中p中的‘?‘可以匹配任意单个字符,‘*‘可以匹配任意字符串(包括空串),判断模式串是否匹配字符s全部(不是部分)。例子:isMatch("aa","a")→falseisMatch("aa","aa")→trueisMatch("aaa","aa")→falseisMatch("aa","*")→trueisMatch("aa"..
分类:
其他好文 时间:
2015-03-31 01:03:35
阅读次数:
115