fork download
  1.  
  2.  
  3. def matchLinear(pattern, name):
  4. px = 0
  5. nx = 0
  6. nextPx = 0
  7. nextNx = 0
  8. iterations = 0
  9. try:
  10. while px < len(pattern) or nx < len(name):
  11. iterations += 1
  12. if px < len(pattern):
  13. c = pattern[px]
  14. if c == '?':
  15. if nx < len(name):
  16. px += 1
  17. nx += 1
  18. continue
  19. elif c == '*':
  20. nextPx = px
  21. nextNx = nx + 1
  22. px += 1
  23. continue
  24. else:
  25. if nx < len(name) and name[nx] == c:
  26. px += 1
  27. nx += 1
  28. continue
  29. if 0 < nextNx and nextNx <= len(name):
  30. px = nextPx
  31. nx = nextNx
  32. continue
  33. return False
  34. return True
  35. finally:
  36. return iterations
  37.  
  38.  
  39. for pattern_len in [10, 50, 100]:
  40. print "Pattern len", pattern_len
  41. for i in xrange(1, 15):
  42. pattern = 'a*' + 'a' * (pattern_len - 3) + 'b'
  43. name_len = 2 ** i
  44. name = 'a' * name_len
  45. it = matchLinear(pattern, name)
  46. print it, name_len * pattern_len
  47.  
Success #stdin #stdout 1.31s 23352KB
stdin
Standard input is empty
stdout
Pattern len 10
6 20
15 40
45 80
117 160
261 320
549 640
1125 1280
2277 2560
4581 5120
9189 10240
18405 20480
36837 40960
73701 81920
147429 163840
Pattern len 50
6 100
15 200
45 400
153 800
561 1600
2009 3200
5145 6400
11417 12800
23961 25600
49049 51200
99225 102400
199577 204800
400281 409600
801689 819200
Pattern len 100
6 200
15 400
45 800
153 1600
561 3200
2145 6400
7920 12800
20592 25600
45936 51200
96624 102400
198000 204800
400752 409600
806256 819200
1617264 1638400