Array list: find: Difference between revisions
Dkratschmann (talk | contribs) (Created page with "'''Algorithmic problem:''' Linear sequence: find '''Prerequisites:''' None. '''Type of algorithm:''' loop '''Auxiliary data:''' A pointer <math>p</math> of type "pointe...") |
No edit summary |
||
(4 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
'''Algorithmic problem:''' [[ | [[Category:Videos]] | ||
{{#ev:youtube|https://www.youtube.com/watch?v=uYTck0kDvl4|500|right||frame}} | |||
'''Algorithmic problem:''' [[Ordered sequence#Find|Ordered sequence: find]] | |||
'''Prerequisites:''' None. | '''Prerequisites:''' None. | ||
Line 5: | Line 7: | ||
'''Type of algorithm:''' loop | '''Type of algorithm:''' loop | ||
'''Auxiliary data:''' A pointer <math>p</math> of type "pointer to list item of array lists of | '''Auxiliary data:''' A pointer <math>p</math> of type "pointer to list item of array lists of component type <math>\Kappa</math>". | ||
== Abstract view == | == Abstract view == | ||
Line 32: | Line 34: | ||
'''Implementation:''' | '''Implementation:''' | ||
# If <math>p=</math>void, terminate the algorithm and return | # If <math>p=</math>void, terminate the algorithm and return '''false'''. | ||
# Otherwise, if <math>p.A[j] = \Kappa</math> for some <math>j \in \{1, \ldots, p.n\}</math>, | # Otherwise, if <math>p.A[j] = \Kappa</math> for some <math>j \in \{1, \ldots, p.n\}</math>, terminate the algorithms and return '''true'''. | ||
# Set <math>p:=p.next</math>. | |||
'''Correctness:''' Obvious. | '''Correctness:''' Obvious. |
Latest revision as of 23:10, 19 June 2015
Algorithmic problem: Ordered sequence: find
Prerequisites: None.
Type of algorithm: loop
Auxiliary data: A pointer [math]\displaystyle{ p }[/math] of type "pointer to list item of array lists of component type [math]\displaystyle{ \Kappa }[/math]".
Abstract view
Invariant: After [math]\displaystyle{ i \ge 0 }[/math] iterations:
- The pointer [math]\displaystyle{ p }[/math] points to the list item at position [math]\displaystyle{ i + 1 }[/math] (or is void if no such item exists).
- The first [math]\displaystyle{ i }[/math] arrays in the list do not contain [math]\displaystyle{ \Kappa }[/math].
Variant: The pointer [math]\displaystyle{ p }[/math] is moved one step forward to the next array list item.
Break condition: Either [math]\displaystyle{ p= }[/math]void or, otherwise, [math]\displaystyle{ \Kappa \in \{p.A[1], \ldots, p.A[p.n]\} }[/math].
Induction basis
Abstract view: Set [math]\displaystyle{ p:= }[/math] first.
Implementation: Obvious.
Proof: Nothing to show.
Induction step
Abstract view:
- Terminate the algorithm if the end of the list is reached or, otherwise, if [math]\displaystyle{ \Kappa }[/math] is found in the current array.
- Otherwise, [math]\displaystyle{ p }[/math] is moved one step forward to the next array.
Implementation:
- If [math]\displaystyle{ p= }[/math]void, terminate the algorithm and return false.
- Otherwise, if [math]\displaystyle{ p.A[j] = \Kappa }[/math] for some [math]\displaystyle{ j \in \{1, \ldots, p.n\} }[/math], terminate the algorithms and return true.
- Set [math]\displaystyle{ p:=p.next }[/math].
Correctness: Obvious.
Complexity
Statement: Linear in the length of the sequence in the worst case.
Proff: Obvious.