i just need radix sort implementation in c++ language which works for strings

i already have the one which works for normal integers

vector < vector < int> > blocks[7];
void radixSort(int rsarr[],int length){

    int index;
    vector<int> helper;
    vector< vector<int> > helper2;
    for(int e=0;e<10;e++){
        helper2.push_back(helper);
    }
    for(int r=0;r<7;r++){
    blocks[r]=helper2;
    }
    for(int y=0;y<length;y++){

        index=(int)(rsarr[y])%10;
        blocks[0][index].push_back((rsarr[y])); 
    }

    for(int j=1;j<7;j++)
    {   
        for(int k=0;k<10;k++)
        {
            for(int i=0;i<blocks[j-1][k].size();i++)
            {           
            index=(int)(blocks[j-1][k][i]/pow(10,j))%10;
            blocks[j][index].push_back(blocks[j-1][k][i]);
            }

        }       
    }           
    int q=0;
    for(int f=0;f<blocks[6][0].size();f++){         
        rsarr[q]=   blocks[6][0][f];
        q++;        
    }
    if(blocks[6][1].size()==1)
    {
        rsarr[q]=blocks[6][1][0];   
    }
    for(int z=0;z<7;z++)
    {
        blocks[0].clear();
    }
}
link|improve this question

50% accept rate
feedback

3 Answers

The problem with trying to use a radix sort for strings is that strings can be arbitrarily long. Radix sort really only makes sense for fixed-size keys.

You can still do it if, as an initial pass, you find the length of the longest string (or, as a refinement, the second-longest string), then do radix iterations starting at that position.

Note that, rather than saving an array per radix iteration, you can use only a source and destination array -- swapping them between iterations.

link|improve this answer
1  
you can solve the length problem by doing a MSD radix sort. You just need to make sure you avoid passing nulls down to the next level. – AShelly Nov 22 '11 at 21:59
feedback

Here is a horrible, untested mix of c and c++ which shows one way to handle strings. There are many ways to improve it, both in clarity and performance...
The first thing to tackle would be some way of avoiding creating a huge number of vectors on the stack. @comingstorm's idea about using two arrays is a good place to start.

const int numblocks = 256;
void radixSort(String rsarr[],int length, int offset = 0)
{
  int inplace = 0;
  vector<String> blocks[numblocks];
  //split the strings into bins
  for (int i=0;i<length;i++)
  {
     char c = rsarr[i][offset];
     if (c!='\0')
        blocks[(int)c].push_back(rsarr[i]);
     else //put the null strings up front
        rsarr[inplace++]=rsarr[i];
  }
  //for blocks all except the null terminated one,
  // copy back into original array in order, 
  // then radix sort that portion of the array
  for (int b=1;b<256;b++)  
  {
     for (int j=0;j<blocks[b].length();j++)
       rsarr[inplace++]=blocks[b][j];
     if (j>1)
      radixSort(rsarr[inplace-j],j,offset+1);
  }
}
link|improve this answer
feedback

Your input is strings and you have a sort that expects integers. Couldn't you just use atoi?

link|improve this answer
not if the string is "Henry" – Mooing Duck Apr 12 at 20:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.