Find an element in a sequence

From Algowiki
Revision as of 19:53, 1 October 2014 by Cuozzo (talk | contribs) (Created page with "__NOTOC__ Category:Checkup Category:Algorithmic Problem Category:Basic Problems on Sequences ==Input== # A sequence <math>S</math>. # an element <math>x</math> of...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Input

  1. A sequence [math]\displaystyle{ S }[/math].
  2. an element [math]\displaystyle{ x }[/math] of the component type of [math]\displaystyle{ S }[/math].

Output

A boolean value:

  1. [math]\displaystyle{ true }[/math], if [math]\displaystyle{ x }[/math] is currently in [math]\displaystyle{ S }[/math],
  2. [math]\displaystyle{ false }[/math], otherwise.

Objective

N/A

Complexity

Linear

Known algorithms

  1. Find element in sequence iteratively
  2. Find element in sequence recursively