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 7174011
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T15:56:39+00:00 2026-05-28T15:56:39+00:00

When working on The fastest sort for BrainF*** , I discovered this algorithm, which

  • 0

When working on “The fastest sort for BrainF***”, I discovered this algorithm, which is O(N*k), where k is the maximum value in the input. It requires O(N) extra storage.

The physical analogy is that you have N stacks of tokens. The height of the stack represents the value to be sorted. (Each token represents a bit). Set aside space for another N stacks. You take one token off the top of each stack that has tokens, and then add one to each stack in the new set from right to left until your hand is empty. Repeat until all original stacks are empty. Now the new set is sorted ascending left to right

In C:

 void sort(int A[], int N)
 {
    int *R = calloc(N,sizeof(int));
    do {
      int i,count=0; 
      for (i=0;i<N;i++) if A[i] { count++; A[i]--;}
      for (i=0;i<count;i++) R[i]++;
    } while (count);
    memcpy(A,R,N);  //A is now sorted descending.
    free(R);
 }

Does this algorithm have a name? It seems similar to a Bead Sort, but I don’t think it’s quite the same.

  • 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-28T15:56:40+00:00Added an answer on May 28, 2026 at 3:56 pm

    Turns out I wasn’t too lazy after all. It is Bead Sort. Here’s the definition from the original paper (PDF link):

    Consider a set A of n positive integers. . .
    For all a in A drop a beads (one bead per rod) along the rods, starting from the 1st rod to the a‘th rod. Finally, the beads, seen level by level, from the nth level to the first level, represent A in ascending order.

    This implementation transforms that algorithm in two ways:

    1. Reflect the ‘frame’ in which it’s working across the line y=x. This changes the result such that the number of ‘beads’ in each column represents the output sorted in descending order. In the original algorithm, the number of ‘beads’ in each row represents the output sorted in ascending order.
    2. Rather than representing the ‘frame’ as an 2-dimensional array of boolean values, represent it as a 1-dimensional array of integers. Each slot in the array corresponds to a ‘rod’, and its value represents the number of beads on that rod. This second bit is a natural transformation – it simply acknowledges that, since a ‘bead’ cannot float in mid-air, recording just the number of beads on the rod tells us all there is to know about how they are arranged on it. You place a bead on a rod by incrementing the corresponding number.

    Here’s some clarification on that first point, taken straight from the diagram on the paper’s second page: As the algorithm is originally implemented, the array [3, 2, 4, 2] would be represented by a grid that looks like:

    * * *
    * *
    * * * *
    * *
    

    And letting the beads fall produces:

    * *
    * *
    * * *
    * * * *
    

    You then have to read the rows, from top to bottom, to get the output: [2, 2, 3, 4]. Whereas in the version that gives results in descending order, you are effectively doing this instead:

      *          *
      *   *      * *
    * * * *  ->  * * * *
    * * * *      * * * *
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Right now I'm working on a project which requires an integer to be converted
Working with python interactively, it's sometimes necessary to display a result which is some
I'm working on a software that does extensive queries to a database which is
What is the fastest synchronization mechanism working on Windows CE? Maybe you know some
Currently I am working on a piece of software, which is currently written 100%
I'm still working with this huge list of URLs, all the help I have
Preface: This question is about a project I am working on with a professor
I'm currently working with the FFTW2 (Fastest Fourier Transform in the West) library, and
I am looking for a way (the fastest, working for both files and directory
I'm trying to find the fastest/most efficient way to extract the average value from

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.