1 / 12

Sorting Large Files

Sorting Large Files. Part One: Why even bother? And a simple solution. Starter Questions. Why sort a large data file? speed of searching Why not sort a large data file? difficult to add and delete data. Searching Unsorted Files. Algorithm - Sequential Search

abe
Download Presentation

Sorting Large Files

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Sorting Large Files Part One: Why even bother? And a simple solution.

  2. Starter Questions • Why sort a large data file? • speed of searching • Why not sort a large data file? • difficult to add and delete data

  3. SearchingUnsorted Files • Algorithm - Sequential Search • start at top of the file and inspect each record until found • Efficiency • best case: 1 • worst case: N • average case: N / 2 • average search for 1,000,000 records is 500,000 compares • Big O N

  4. Searching Sorted Files • Example 1: Sequential Search • Example 2: Binary Search • Basic Algorithm look at middle record if (target < current record) look at front half else look at end half • Big O = log2(N) • average search for 1,000,000 records is 20 compares

  5. Editing Unsorted Files How do you add data? append new data to end of file How do you delete data? mark over records with Xs and 0s periodically clean the file

  6. Editing Sorted Files • To Delete Records, we cannot put Xs over the key field of records • Maintain 3 sorted Files • working data • data to delete • data to add • To Update --> Merge the three all at once

  7. Example Update of Sorted File Working Data: aardvark bat cat dog giraffe hippopotamus Data to Delete: cat Data to Add: elephant ferret New Working Data: aardvark bat dog elephant ferret giraffe hippopotamus

  8. Question • Why we would ever need to sort a file? Wouldn't we build it sorted to begin with and just keep it sorted? • sort a big block of new data • e.g., list of transactions from today • sort a huge file by a different key

  9. File Sorting Algorithms • Internal Sorts • when the whole file will fit in main memory • algorithm: • read the unsorted file into memory • sort all at once • write to new file

  10. File Sorting Algorithms • External Sorts • when the file is too big to fit in memory • over simplified algorithm: while not eof read a big block of the data into memory sort that portion write into a temp file merge all those temp files

  11. 2-Way Merge Sort Create 2 sorted files Read 1st half of file W into memory sort it, then write to file X Read 2nd half of W into memory sort it, then write to file Y Merge the 2 files Read record x from X Read record y from Y While both X and Y contain records if x < y write x to Z read x from X else write y to Z read y from Y If X is empty write remainder of Y to Z else write remainder of X to Z

  12. Next Time Good internal sorts Merging a small amount of unsorted new data into a Big Sorted File N-Way Merge Sort

More Related