Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am having trouble sorting the following array.

How do I sort the temp_var[] array based on temp_var[].trade_date and temp_var[].trans_amount ?

typedef struct      
{
    char    trans_d                  [2],      
            trans_amount            [10], 
            trans_me                 [8],
            account                 [10], 
            trans                  [16],
            trade_date              [12],
            setnt_date              [12];
} what_if;

what_if  temp_var[100];

void swap(what_if *a, what_if *b)
{
    tmp = *a;
    *a = *b;
    *b = tmp;
}


void bubbleSort(what_if a[], int size)
{
    for (i=0; i<size-1; i++)
    {
        for (j=size-1; j>i; j--)  
            if (strcmp(a[j].trade_date , a[j-1].trade_date) < 0 )
                swap(&a[j], &a[j-1]);
    }
}

int main()
{
    //after read the structure values
    bubbleSort(temp_var,t_count);
}
share|improve this question
What is your question? Does the code you gave not compile or have runtime errors? – Puddingfox Apr 29 '11 at 4:40
1  
Is this a homework? If so, you should indicate it. – Joce Apr 29 '11 at 4:44
How is this different from your other question? stackoverflow.com/questions/5823266/… – mu is too short Apr 29 '11 at 5:04
hi puddingfox, it got sorting for on trade_date , is there is any mistake u felt there.(date like 20100608) – jcrshankar Apr 29 '11 at 5:06
there i sort base on single structure variable, now i need to to with two structure variable. – jcrshankar Apr 29 '11 at 5:08

1 Answer

You simply check the 2nd sorting criteria if the 1st is equal. Please check wether the trans_amount field can be compared this way. The code could be shorter, my intention was to demonstrate how this works.

int first = strcmp(a[j].trade_date , a[j-1].trade_date);
 if ( first == 0 ) {
     if ( strcmp(a[j].trans_amount , a[j-1].trans_amount) < 0 )
         swap(&a[j], &a[j-1]);
 }
 else if ( first < 0 ) {
    swap(&a[j], &a[j-1]);
 }
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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