<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>'Search Algorithm' Thread RSS Feed</title>
    <link>http://www.programmersheaven.com/</link>
    <description>Contains the latest posts from the thread 'Search Algorithm' posted on the 'VB.NET' forum at Programmer's Heaven.</description>
    <language>en</language>
    <copyright>Copyright 2013 Programmers Heaven</copyright>
    <pubDate>Thu, 20 Jun 2013 02:52:50 -0700</pubDate>
    <lastBuildDate>Thu, 20 Jun 2013 02:52:50 -0700</lastBuildDate>
    <generator>Argotic Syndication Framework 2007.3.0.1, http://www.codeplex.com/Argotic</generator>
    <docs>http://www.rssboard.org/rss-specification</docs>
    <ttl>360</ttl>
    <image>
      <url>http://www.programmersheaven.com/images/ph.gif</url>
      <title>Programmers Heaven</title>
      <link>http://www.programmersheaven.com/</link>
      <width>88</width>
      <height>31</height>
    </image>
    <item>
      <title>Search Algorithm</title>
      <link>http://www.programmersheaven.com/mb/VBNET/367622/367622/search-algorithm/</link>
      <description>Hai,&lt;br /&gt;
I had done one Address Management program in Vb.Net 2005  and Ms-access 2000.&lt;br /&gt;
The database consists of only one table with 5000 records in fifteen fields.&lt;br /&gt;
I had given one search option to retrive the required data from database.&lt;br /&gt;
I didn't use any algorithm in the program.&lt;br /&gt;
Simply i had used select query for finding the record.&lt;br /&gt;
&lt;br /&gt;
So that i causes time delay to retrive the record from the database.&lt;br /&gt;
&lt;br /&gt;
I think if i use any Search alogrithm in my program,it will reduce the time delay. &lt;br /&gt;
&lt;br /&gt;
If my idea is correct,please suggest me which alogorithm i can use and how can i implement it my program.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
G.Manivannan, M.Sc.,[it],&lt;br /&gt;
VBA Programmer,&lt;br /&gt;
AKUVA Infotech, Bangalore.</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/VBNET/367622/367622/search-algorithm/</guid>
      <pubDate>Mon, 26 Nov 2007 22:02:04 -0700</pubDate>
      <category>VB.NET</category>
    </item>
    <item>
      <title>Re: Search Algorithm</title>
      <link>http://www.programmersheaven.com/mb/VBNET/367622/367623/re-search-algorithm/#367623</link>
      <description>: Hai,&lt;br /&gt;
: I had done one Address Management program in Vb.Net 2005  and &lt;br /&gt;
: Ms-access 2000.&lt;br /&gt;
: The database consists of only one table with 5000 records in fifteen &lt;br /&gt;
: fields.&lt;br /&gt;
: I had given one search option to retrive the required data from &lt;br /&gt;
: database.&lt;br /&gt;
: I didn't use any algorithm in the program.&lt;br /&gt;
: Simply i had used select query for finding the record.&lt;br /&gt;
: &lt;br /&gt;
: So that i causes time delay to retrive the record from the database.&lt;br /&gt;
: &lt;br /&gt;
: I think if i use any Search alogrithm in my program,it will reduce &lt;br /&gt;
: the time delay. &lt;br /&gt;
: &lt;br /&gt;
: If my idea is correct,please suggest me which alogorithm i can use &lt;br /&gt;
: and how can i implement it my program.&lt;br /&gt;
: &lt;br /&gt;
: &lt;br /&gt;
: &lt;br /&gt;
: &lt;br /&gt;
: G.Manivannan, M.Sc.,[it],&lt;br /&gt;
: VBA Programmer,&lt;br /&gt;
: AKUVA Infotech, Bangalore.&lt;br /&gt;
If your table is sorted on the field you're searching on, then a binary search algorithm is a good algorithm.&lt;br /&gt;
If the field isn't sorted but a string, then you might consider adding some metadata to the table, and use the Rabin-karp string matching algoritm.&lt;br /&gt;
Both these algoritms are well described on the wikipedia or in any good book on algorithms.</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/VBNET/367622/367623/re-search-algorithm/#367623</guid>
      <pubDate>Mon, 26 Nov 2007 23:42:40 -0700</pubDate>
      <category>VB.NET</category>
    </item>
    <item>
      <title>Re: Search Algorithm</title>
      <link>http://www.programmersheaven.com/mb/VBNET/367622/367628/re-search-algorithm/#367628</link>
      <description>If you're trying to improve database performance, adding an index on the field named in your WHERE clause and/or any fields that are used in JOINs can make a dramatic difference. I sped a query up by a factor of more than 10 this weekend by doing this.&lt;br /&gt;
&lt;br /&gt;
Jonathan&lt;br /&gt;
###&lt;br /&gt;
for(74,117,115,116){$::a.=chr};(($_.='qwertyui')&amp;amp;&amp;amp;&lt;br /&gt;
(tr/yuiqwert/her anot/))for($::b);for($::c){$_.=$^X;&lt;br /&gt;
/(p.{2}l)/;$_=$1}$::b=~/(..)$/;print("$::a$::b $::c hack$1.");</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/VBNET/367622/367628/re-search-algorithm/#367628</guid>
      <pubDate>Tue, 27 Nov 2007 01:57:50 -0700</pubDate>
      <category>VB.NET</category>
    </item>
  </channel>
</rss>