Presentation is loading. Please wait.

Presentation is loading. Please wait.

UNIVERSITY OF SOUTH CAROLINA College of Engineering & Information Technology Bioinformatics Algorithms and Data Structures Chapter 1: Exact String Matching.

Similar presentations


Presentation on theme: "UNIVERSITY OF SOUTH CAROLINA College of Engineering & Information Technology Bioinformatics Algorithms and Data Structures Chapter 1: Exact String Matching."— Presentation transcript:

1 UNIVERSITY OF SOUTH CAROLINA College of Engineering & Information Technology Bioinformatics Algorithms and Data Structures Chapter 1: Exact String Matching Instructor: Dr. Rose January 14, 2003

2 UNIVERSITY OF SOUTH CAROLINA College of Engineering & Information Technology Exact String Matching Types of Abstract Problems: –Pattern matching, i.e., find pattern P in string S –Similarity comparison, i.e., what is the longest common substring in S1 and S2? –Can we find P´ ~ P in S? We can think of P´ as a mutation of P. –What are the regions of similarity in S1 and S2? We can also do this with mutations

3 UNIVERSITY OF SOUTH CAROLINA College of Engineering & Information Technology Exact String Matching Q: What is the underlying theme common to these abstract problems? A: Correlation, i.e., correlation between two signals, strings, etc.

4 UNIVERSITY OF SOUTH CAROLINA College of Engineering & Information Technology Exact String Matching Q: What is the simplest way to compare two strings? A: Look for a mapping of one string into the other.

5 UNIVERSITY OF SOUTH CAROLINA College of Engineering & Information Technology Exact String Matching Given two strings S1 and S2, Where length(S1) <= length(S2) : –Start at the beginning of S1 and S2 –Compare corresponding characters, i.e., S1[1] & S2[1], S1[2] & S2[2], etc.. Continue until either: 1)All the characters in S1 have been matched or 2)A mismatch is found

6 UNIVERSITY OF SOUTH CAROLINA College of Engineering & Information Technology Exact String Matching If there is a mismatch shift 1 character position along S2 and start over, e.g., compare S1[1]& S2[2], S1[2]& S2[3], etc.. Keep doing this until a match is found or the possible starting positions in S2 are exhausted.

7 UNIVERSITY OF SOUTH CAROLINA College of Engineering & Information Technology Exact String Matching Example: S1 = adab, S2=abaracadabara a b a r a c a d a b a r a 1: a dd != a 2: _ aa != b 3: __ a dd != r 4: ____aa != r 5: ______a dd != c 6: _______ aa != c 7: _________ a d a b Finally!!!! Q: How many comparisons? A: 13, looks ok?

8 UNIVERSITY OF SOUTH CAROLINA College of Engineering & Information Technology Exact String Matching Example 2: S1 = aaaaab, length(S1) = 6 S2 = aaaaaaaaaaab, length(S2) = 12 a a a a a a a a a a a b 1: a a a a a bb != a 2: _ a a a a a bb != a 3: ___a a a a a bb != a 4: ____ a a a a a bb != a 6: ______a a a a a bb != a 7: _______ a a a a a bb != a

9 UNIVERSITY OF SOUTH CAROLINA College of Engineering & Information Technology Exact String Matching Example 2 continued from previous slide a a a a a a a a a a a b 8: ________ a a a a a bFinally!!! Q: How many comparisons were made? A: 42 = 7 X 6 = (12 – 6 + 1) X 6 = (N – M + 1) X M Where length(S2) = N and length(S1) = M Q: Where did this come from? A: There are N – M + 1 possible match positions in S2

10 UNIVERSITY OF SOUTH CAROLINA College of Engineering & Information Technology Exact String Matching Bottom line, the time complexity is  (NM) Observation: Notice that many of the characters in S2 are involved in multiple comparisons. WHY??? A: Because the naïve approach doesn’t learn from previous matches. By the time the first mismatch occurs, we know what the first 6 characters of S1 and S2 are.

11 UNIVERSITY OF SOUTH CAROLINA College of Engineering & Information Technology Exact String Matching Note: A smarter approach would not involve the first 6 characters of S2 in subsequent comparisons. Fast matching algorithms take advantage of this insight. Q: Where does this insight come from? A: Preprocessing either S1 or S2.

12 UNIVERSITY OF SOUTH CAROLINA College of Engineering & Information Technology Exact String Matching Insight: if a match fails 1) don’t make redundant comparisons 2) skip to the first next possible match position. Note: the next possible match position may not be 1 character shift away. Let’s consider both of these ideas with respect to examples 1 and 2

13 UNIVERSITY OF SOUTH CAROLINA College of Engineering & Information Technology Exact String Matching Let’s review example 2: a a a a a a a a a a a b  S2 1: a a a a a b  S1b != a, we have seen the first 6 characters a a a a a 2: _a a a a a bb != a, we already know the a’s match, we only need to try to match the ‘b’ a a a a a 3: ___a a a a a bb != a, ditto a a a a a 4: ____ a a a a a bb != a, ditto a a a a a 6: ______a a a a a bb != a, ditto a a a a a 7: _______ a a a a a bb != a, ditto a a a a a 8: _________a a a a a b Finally!!! The number of comparisons is 12 instead of the previous 42

14 UNIVERSITY OF SOUTH CAROLINA College of Engineering & Information Technology Exact String Matching Let’s review example 1: S1 = adab, S2=abaracadabara a b a r a c a d a b a r a 1:a dd != b, we have seen the first 2 characters The next possible match must be at least two positions away 2: __ a dd != r, we have seen the first 4 chars of S2 The next possible match must be at least two positions away 3: _____ a dd != c, we have seen the first 6 chars of S2 The next possible match must be at least two positions away 4: _________ a d a b Finally!!!! Q: How many comparisons? A: 10. The previous approach took 13 comparisons

15 UNIVERSITY OF SOUTH CAROLINA College of Engineering & Information Technology Preprocessing a String Core Idea For each position i>1 in string S, identify the maximal substring that matches a prefix of S. Q: Why do we want to do this? A: We will use this information in two ways: 1) This tells us how far to skip for the next possible match. (Recall example 1) 2) Knowledge of prefix matches allows us to avoid redundant comparisons (Recall example 2) Do we need to go back and review examples 1 and 2?

16 UNIVERSITY OF SOUTH CAROLINA College of Engineering & Information Technology Preprocessing a String Let M(S i ) denote the maximal substring that matches a prefix of S at position i>1 Example: S = aabcaabxaaz (from textbook) M(S 2 ) = a M(S 3 ) = Ø M(S 4 ) = Ø M(S 5 ) = aab

17 UNIVERSITY OF SOUTH CAROLINA College of Engineering & Information Technology Preprocessing a String Let Z(S i ) denote the length of the maximal substring M(S i ) starting from position i>1 that matches a prefix of S Example: S = aabcaabxaaz (from textbook) Z(S 2 ) = 1, since M(S 2 ) = a Z(S 3 ) = 0, since M(S 3 ) = Ø Z(S 4 ) = 0, since M(S 4 ) = Ø Z(S 5 ) = 3, since M(S 5 ) = aab

18 UNIVERSITY OF SOUTH CAROLINA College of Engineering & Information Technology Preprocessing a String Consider the figure above, depicting string S and two maximal substrings  and  from positions j and k, respectively that match prefixes of S. Z j is the length of , and Z k is the length of . Gusfield refers to these boxes as Z-boxes.

19 UNIVERSITY OF SOUTH CAROLINA College of Engineering & Information Technology Preprocessing a String Let’s look at a concrete instance of this abstraction

20 UNIVERSITY OF SOUTH CAROLINA College of Engineering & Information Technology Preprocessing a String For all i>1, r i denotes the right-most endpoint of the Z-boxes containing i. Note that while i is in both  and , the rightmost endpoint of these Z-boxes is the endpoint of .

21 UNIVERSITY OF SOUTH CAROLINA College of Engineering & Information Technology Preprocessing a String Let’s compare the abstract depiction with our concrete example.

22 UNIVERSITY OF SOUTH CAROLINA College of Engineering & Information Technology Preprocessing a String l i is the left end of the Z-box ending at r i.

23 UNIVERSITY OF SOUTH CAROLINA College of Engineering & Information Technology Preprocessing a String Again, compare the abstract with the concrete.

24 UNIVERSITY OF SOUTH CAROLINA College of Engineering & Information Technology Preprocessing a String We will now consider how to find the Z- boxes in linear time, O(|S|). We can use this to find exact matches in linear time.

25 UNIVERSITY OF SOUTH CAROLINA College of Engineering & Information Technology Preprocessing a String We start by computing Z 2, explicitly comparing characters S[1]&S[2], etc. If Z 2 > 0, then let r = r 2 and l = l 2 = 2, o/w let r = 0 and l = 0.

26 UNIVERSITY OF SOUTH CAROLINA College of Engineering & Information Technology Preprocessing a String Iterate to compute all subsequent Z k. When Z k is computed, all previous Z i, 1< i <= k-1 are already known.

27 UNIVERSITY OF SOUTH CAROLINA College of Engineering & Information Technology The Z Algorithm 1.If k > r, then k is not in any Z-box that has yet been found. –We must find Z k by comparing characters starting at position k with characters starting at position 1 in S.

28 UNIVERSITY OF SOUTH CAROLINA College of Engineering & Information Technology The Z Algorithm 2.If k <= r, then k is contained in a previously found Z-box, say . –Then the substring  from k to r matches a substring of  from k´ to Z l.

29 UNIVERSITY OF SOUTH CAROLINA College of Engineering & Information Technology The Z Algorithm Here is a concrete example where k <= r. We see that k is contained in a previously found Z-box . The substring  from k to r matches a substring of  from k´ to Z l.

30 UNIVERSITY OF SOUTH CAROLINA College of Engineering & Information Technology The Z Algorithm We need to check if the value of Z k´ is nonzero. Why? If Z k´ is nonzero, then there is a prefix of S starting k´. This means that k must also be the start of a prefix of S.

31 UNIVERSITY OF SOUTH CAROLINA College of Engineering & Information Technology The Z Algorithm Here is a concrete example where the value of Z k´ is zero. The substring starting at k´ is not a prefix of S, nor is the substring at k.

32 UNIVERSITY OF SOUTH CAROLINA College of Engineering & Information Technology The Z Algorithm If Z k´ is nonzero, how long is the prefix starting at k? Minimally, it is at least as long as the smaller of Z k´ and |  |. Of course it may be longer.

33 UNIVERSITY OF SOUTH CAROLINA College of Engineering & Information Technology The Z Algorithm The prefix starting at k is at least the smaller of Z k´ and |  |. Case 2a: If Z k´ < |  |, then its length is exactly Z k´ as depicted in the figure below. In this case, r and l remain unchanged.

34 UNIVERSITY OF SOUTH CAROLINA College of Engineering & Information Technology The Z Algorithm Here is a concrete example where Z k´ < |  |. In this case, 3 < 6. The length of the prefix starting at k is exactly Z k´, i.e., 3. In this case, r and l remain unchanged.

35 UNIVERSITY OF SOUTH CAROLINA College of Engineering & Information Technology The Z Algorithm Case 2b: If Z k´ >= |  |, then  is a prefix of S as depicted in the figure below. It could be the case that Z k > |  |. This can only be determined by extending the match past r.

36 UNIVERSITY OF SOUTH CAROLINA College of Engineering & Information Technology The Z Algorithm Here is a concrete example where Z k´ = |  |, i.e., 3 = 3. We can see that  is a prefix of S.

37 UNIVERSITY OF SOUTH CAROLINA College of Engineering & Information Technology The Z Algorithm Here is a concrete example where Z k´ > |  |. We can see that  is a prefix of S and so is this longer substring starting at k. Only by extending the match past r are we able to distinguish between Z k´ = |  | and Z k´ > |  |.

38 UNIVERSITY OF SOUTH CAROLINA College of Engineering & Information Technology The Z Algorithm In extending the match past r, say a mismatch occurs at q, q >= r + 1. Set Z k = q – k, r = q – 1, and l = k as shown in the figure below.

39 UNIVERSITY OF SOUTH CAROLINA College of Engineering & Information Technology The Z Algorithm Using our concrete example: In extending the match past r, a mismatch occurs at q, q = r + 2. Set Z k = q – k, r = q – 1, and l = k.

40 UNIVERSITY OF SOUTH CAROLINA College of Engineering & Information Technology The Z Algorithm Continue to iterate through the entire string. Computing subsequent Z k will entail only the cases we discussed: –Case 1: k > r, k is not in a known Z-box. Find Z k by explicitly matching with the start of S. Set r & l accordingly. –Case 2a: Z k’ < |  |, the prefix at k is wholly contained in . r & l are not changed. –Case 2b: Z k’ >= |  |,  is a prefix of S. Try to extend the match. Set l = k and r = q – 1, where q is the position of the first mismatch.

41 UNIVERSITY OF SOUTH CAROLINA College of Engineering & Information Technology The Z Algorithm Theorem 1.4.1 Using algorithm Z, value Z k is correctly computed and variables r and l are correctly updated. Proof on page 9 of text. Theorem 1.4.2 All the Z k (S) values are computed by algorithm Z in O(|S|), i.e., linear time. Proof on page 10 of text.

42 UNIVERSITY OF SOUTH CAROLINA College of Engineering & Information Technology A Simple Linear-Time Exact String Matching Algorithm We can use algorithm Z by itself as a simple linear-time string matching algorithm. Let S = P$T where: –T is the target string, |T| = m –P is the pattern string, |P| = n, n <= m –$ is character not appearing in either P or T. Apply algorithm Z to S.

43 UNIVERSITY OF SOUTH CAROLINA College of Engineering & Information Technology A Simple Linear-Time Exact String Matching Algorithm Since $ does not appear in P or T, no prefix of S can be longer than n, i.e., |P|. We only need to consider Z i (S) for i in T, i.e., i > n + 1 Any value of i, such that i > n + 1, where Z i (S) = n, indicates a match of P at position i – (n+1) in T. All Z i (S) are computed in O(m+n) = O(m)


Download ppt "UNIVERSITY OF SOUTH CAROLINA College of Engineering & Information Technology Bioinformatics Algorithms and Data Structures Chapter 1: Exact String Matching."

Similar presentations


Ads by Google