IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

Search All Algorithm in cobol


IBM Mainframe Forums -> COBOL Programming
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
josephvincentd
Warnings : 1

New User


Joined: 19 May 2005
Posts: 15

PostPosted: Wed Jun 08, 2005 11:16 am
Reply with quote

hi friends
i have a question in cobol search.

my file having 100 records .when we are using search all it splits the records
in to 5o ,50 and make a binary search.am i correct?

suppose i have 101 records in my file how will it start the spliting?
Back to top
View user's profile Send private message
varun_sharma

New User


Joined: 08 Jun 2005
Posts: 19
Location: new delhi

PostPosted: Wed Jun 08, 2005 7:18 pm
Reply with quote

Hi

search all divides total no. of records into half and then searches for the desired record. So when there'll be 101 records, internally search all will divide them into either 50:51 or 51:50 and will try to search for the records. however, if the size of all the records is less then the page size, its better to use search then search all.

correct me if im wrong somewhere
Back to top
View user's profile Send private message
kanak

Moderator


Joined: 12 Mar 2005
Posts: 252
Location: India

PostPosted: Wed Jun 08, 2005 8:36 pm
Reply with quote

when you perform search all, first thing you need to ensure is array or table must be sorted.

Now when number of record is even then it checks which is the middle one, i.e. half of the total number. if 100 then 50th record is taken into care then it performs binary search.

Where as when say number of element is 101 then again it will take half of 101, and which is 50 (integral), then it will perform binary search, where first key that is checked is the 50th element.

Hope i have able to clear out your doubt.
If you have any concrens let us know...and correct me if i am wrong.
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> COBOL Programming

 


Similar Topics
Topic Forum Replies
No new posts Replace each space in cobol string wi... COBOL Programming 3
No new posts COBOL -Linkage Section-Case Sensitive COBOL Programming 1
No new posts Search two or more word with FILEAID Compuware & Other Tools 15
No new posts COBOL ZOS Web Enablement Toolkit HTTP... COBOL Programming 0
No new posts Sortjoin and Search for a String and ... DFSORT/ICETOOL 1
Search our Forums:

Back to Top