<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.omnivision.website/index.php?action=history&amp;feed=atom&amp;title=4.2.2.1_Linear_Search</id>
	<title>4.2.2.1 Linear Search - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.omnivision.website/index.php?action=history&amp;feed=atom&amp;title=4.2.2.1_Linear_Search"/>
	<link rel="alternate" type="text/html" href="https://wiki.omnivision.website/index.php?title=4.2.2.1_Linear_Search&amp;action=history"/>
	<updated>2026-05-23T00:40:45Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.43.8</generator>
	<entry>
		<id>https://wiki.omnivision.website/index.php?title=4.2.2.1_Linear_Search&amp;diff=430&amp;oldid=prev</id>
		<title>Mr. Goldstein: Created page with &quot;=== 4.2.2.1 Linear Search === &#039;&#039;(Difficulty Note: This is a very intuitive and accessible concept for 7th graders.)&#039;&#039;  &#039;&#039;&#039;Linear Search&#039;&#039;&#039; is the simplest way to find something. It&#039;s like looking for a book in a messy pile without any order. You start at the very beginning of the list of items and check each item one by one until you find what you&#039;re looking for, or until you reach the end of the list.  &#039;&#039;&#039;How it works:&#039;&#039;&#039;  # Start at the first item. # Is this the item y...&quot;</title>
		<link rel="alternate" type="text/html" href="https://wiki.omnivision.website/index.php?title=4.2.2.1_Linear_Search&amp;diff=430&amp;oldid=prev"/>
		<updated>2025-07-11T22:07:54Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;=== 4.2.2.1 Linear Search === &amp;#039;&amp;#039;(Difficulty Note: This is a very intuitive and accessible concept for 7th graders.)&amp;#039;&amp;#039;  &amp;#039;&amp;#039;&amp;#039;Linear Search&amp;#039;&amp;#039;&amp;#039; is the simplest way to find something. It&amp;#039;s like looking for a book in a messy pile without any order. You start at the very beginning of the list of items and check each item one by one until you find what you&amp;#039;re looking for, or until you reach the end of the list.  &amp;#039;&amp;#039;&amp;#039;How it works:&amp;#039;&amp;#039;&amp;#039;  # Start at the first item. # Is this the item y...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;=== 4.2.2.1 Linear Search ===&lt;br /&gt;
&amp;#039;&amp;#039;(Difficulty Note: This is a very intuitive and accessible concept for 7th graders.)&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Linear Search&amp;#039;&amp;#039;&amp;#039; is the simplest way to find something. It&amp;#039;s like looking for a book in a messy pile without any order. You start at the very beginning of the list of items and check each item one by one until you find what you&amp;#039;re looking for, or until you reach the end of the list.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;How it works:&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
# Start at the first item.&lt;br /&gt;
# Is this the item you&amp;#039;re looking for?&lt;br /&gt;
#* If Yes, you found it! Stop.&lt;br /&gt;
#* If No, move to the next item.&lt;br /&gt;
# Keep doing this until you find the item or run out of items to check.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Example:&amp;#039;&amp;#039;&amp;#039; Imagine you have a list of numbers: &amp;lt;code&amp;gt;[5, 12, 3, 8, 15, 7]&amp;lt;/code&amp;gt; and you&amp;#039;re looking for the number &amp;lt;code&amp;gt;8&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
* Check &amp;lt;code&amp;gt;5&amp;lt;/code&amp;gt; (No)&lt;br /&gt;
* Check &amp;lt;code&amp;gt;12&amp;lt;/code&amp;gt; (No)&lt;br /&gt;
* Check &amp;lt;code&amp;gt;3&amp;lt;/code&amp;gt; (No)&lt;br /&gt;
* Check &amp;lt;code&amp;gt;8&amp;lt;/code&amp;gt; (Yes!) – You found it!&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;When is it used?&amp;#039;&amp;#039;&amp;#039; Linear search works well for short lists or lists that are not sorted in any particular order. It&amp;#039;s easy to understand and program. However, if you have a very long list, it can be slow because you might have to check every single item.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Bibliography:&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;Linear search facts for kids.&amp;#039;&amp;#039;&amp;#039; (n.d.). &amp;#039;&amp;#039;Kiddle&amp;#039;&amp;#039;. Retrieved July 11, 2025, from https://kids.kiddle.co/Linear_search&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;What is Linear Search?&amp;#039;&amp;#039;&amp;#039; (n.d.). &amp;#039;&amp;#039;Programiz&amp;#039;&amp;#039;. Retrieved July 11, 2025, from https://www.programiz.com/dsa/linear-search&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Further Reading:&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
* &amp;#039;&amp;#039;&amp;#039;Linear Search Explained.&amp;#039;&amp;#039;&amp;#039; (2020, January 27). &amp;#039;&amp;#039;freeCodeCamp.org&amp;#039;&amp;#039;. Retrieved from https://www.freecodecamp.org/news/linear-search/&lt;/div&gt;</summary>
		<author><name>Mr. Goldstein</name></author>
	</entry>
</feed>