Some of your friends have gotten into the burgeoning field of time-series data mining, in which one looks for patterns in sequences of events that occur over time. Purchases at stock exchanges—what’s being bought— are one source of data with a natural ordering in time. Given a long sequence S of such events, your friends want an efficient way to detect certain “patterns” in them—for example, they may want to know if the four events buy Yahoo, buy eBay, buy Yahoo, buy Oracle occur in this sequence S, in order but not necessarily consecutively. They begin with a collection of possible events (e.g., the possible transactions) and a sequence S of n of these events. A given event may occur multiple times in S (e.g., Yahoo stock may be bought many times in a single sequence S). We will say that a sequence S′ is a subsequence of S if there is a way to delete certain of the events from S so that the remaining events, in order, are equal to the sequence S′. So, for example, the sequence of four events above is a subsequence of the sequence buy Amazon, buy Yahoo, buy eBay, buy Yahoo, buy Yahoo, buy Oracle Their goal is to be able to dream up short sequences and quickly detect whether they are subsequences of S. So this is the problem they pose to you: Give an algorithm with pseudocode that takes two sequences of events—S′ of length m and S of length n, each possibly containing an event more than once—and decides in time O(m + n) whether S′ is a subsequence of S.
PLEASE ALSO ANALYSE THE RUNNING TIME OF THE ALGORITHM AND PROVE IT'S CORRECTNESS.
Consider event as a single char (say buy yahoo as a single charcter e)
Here is the algorithm
def isSubSequence(string1, string2, m, n):
# Base Cases
if m == 0: return True
if n == 0: return False
# If last event of two strings are matching
if string1[m-1] == string2[n-1]:
return isSubSequence(string1, string2, m-1, n-1)
# If last event are not matching
return isSubSequence(string1, string2, m, n-1)
Please note string1 and string2 can be thought of as list where each list element is an event.
This will run in O(m+n) time as this will checkeck each event only once.
Thsi will work as it is deleting events in S which are not occuring in S' in order from the last, so if S' occurs in S, S will have thsoe events in order form last as well and it will delete all other event to left with S' if there is any event not in order than resulting S would not be same as S'
Please rate positively if this answered your question.
Some of your friends have gotten into the burgeoning field of time-series data mining, in which...
Coding for Python – don’t need it to be complex: In this assignment, your goal is to write a Python program to determine whether a given pattern appears in a data series, and if so, where it is located in the data series. This type of problem is common in many health disciplines. For example, identifying treatment pathways. The goal is to detect whether a certain pattern appears in the data series. In the following example, the pattern to be...
4. Perform a SWOT analysis for Fitbit. Based on your
assessment of these, what are some strategic options for Fitbit
going forward?
5. Analyze the company’s financial performance. Do trends
suggest that Fitbit’s strategy is working?
6.What recommendations would you make to Fitbit management to
address the most important strategic issues facing the
company?
Fitbit, Inc., in 2017: Can Revive Its Strategy and It Reverse Mounting Losses? connect ROCHELLE R. BRUNSON Baylor University MARLENE M. REED Baylor University in the...
MULTIPLE CHOICE 1) Which of the following is NOT an investment as defined in the text? A) a certificate of deposit issued by a bank B) a new automobile C) a United States Saving Bond D) a mutual fund held in a retirement account 2) Which of the following is NOT traded in the securities markets? A) stocks B) bonds C) derivatives D) real estate 3) The governmental agency that oversees the capital markets is the A) Federal Trade Commission....
10. Write a one-page summary of the attached paper? INTRODUCTION Many problems can develop in activated sludge operation that adversely affect effluent quality with origins in the engineering, hydraulic and microbiological components of the process. The real "heart" of the activated sludge system is the development and maintenance of a mixed microbial culture (activated sludge) that treats wastewater and which can be managed. One definition of a wastewater treatment plant operator is a "bug farmer", one who controls the aeration...