Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 692391
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T02:38:46+00:00 2026-05-14T02:38:46+00:00

I need to sort close to a 1,00,000 floating point entries in Delphi. I

  • 0

I need to sort close to a 1,00,000 floating point entries in Delphi. I am new to Delphi and would like to know if there are any ready made solutions available. I tried a few language provided constructs and they take an inordinate amount of time to run to completion.(a 5-10 sec execution time is fine for the application)

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-14T02:38:46+00:00Added an answer on May 14, 2026 at 2:38 am

    why not just implement a quick Sort algorithm?

    see this simple code

    program ProjectSortFoat;
    
    {$APPTYPE CONSOLE}
    
    uses
      SysUtils;
    
    procedure QuickSort(var List: array of Double; iLo, iHi: Integer) ;
    var
      Lo       : integer;
      Hi       : integer;
      T        : Double;
      Mid      : Double;
    begin
      Lo := iLo;
      Hi := iHi;
      Mid:= List[(Lo + Hi) div 2];
      repeat
    
        while List[Lo] < Mid do Inc(Lo) ;
        while List[Hi] > Mid do Dec(Hi) ;
    
        if Lo <= Hi then
        begin
          T := List[Lo];
          List[Lo] := List[Hi];
          List[Hi] := T;
          Inc(Lo);
          Dec(Hi);
        end;
    
      until Lo > Hi;
    
      if Hi > iLo then QuickSort(List, iLo, Hi);
      if Lo < iHi then QuickSort(List, Lo, iHi);
    
    end;
    
    
    
    const
    Elements = 1000000;
    var
      doubleArray : array of Double;
      i           : integer;
      t           : TDateTime;
    begin
      SetLength(doubleArray,Elements);
      try
        t:=Now;
        Writeln('Init Generating '+FormatFloat('#,',Elements)+' random numbers ');
        for i:=low(doubleArray) to high(doubleArray) do
        doubleArray[i]:=Random(10000000)+Random; //can be improved
        Writeln('Elapsed '+FormatDateTime('HH:NN:SS.ZZZ',Now-t));
    
        t:=Now;
        Writeln('Sorting '+FormatFloat('#,',Elements)+' random numbers ');
        QuickSort(doubleArray, Low(doubleArray), High(doubleArray)) ;
        Writeln('Elapsed '+FormatDateTime('HH:NN:SS.ZZZ',Now-t));
    
      finally
      Finalize(doubleArray);
      end;
      Readln;
    end.
    

    in my machine, the execution time for sorting 1.000.000 float numbers is 0.167 seconds.

    if you have delphi 7 or another older version (i don’t know if exist in the new versions) you can check the

    C:\Program
    Files\Borland\Delphi7\Demos\Threads

    path, for a cool demo app using differents sorting algorithms an threads.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to sort an array that can look like this: $array[4][0] = array('id'
I need to sort a flat file by third column leaving first column intact
I need to sort list of strings in the alphabetical order: List<String> list =
I need to sort nodes in xml. I have the following code which successfully
I need to sort on a date-field type, which name is mod_date. It works
I need to sort string, and I came up with the following function. def
I need to sort an array of months (alphabetical months) according to their months
I need to sort a collection of objects by a utf-8 string property (built
I need to sort then print the result increasing and decreasing. I have some
I need a way to automatically close the server program which runs by using

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.