CCS C Software and Maintenance Offers
FAQFAQ   FAQForum Help   FAQOfficial CCS Support   SearchSearch  RegisterRegister 

ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

CCS does not monitor this forum on a regular basis.

Please do not post bug reports on this forum. Send them to support@ccsinfo.com

Why can I not compare two arrays of 4 elements ?

 
Post new topic   Reply to topic    CCS Forum Index -> General CCS C Discussion
View previous topic :: View next topic  
Author Message
t90



Joined: 07 Aug 2008
Posts: 11
Location: saigon,vietnam

View user's profile Send private message Yahoo Messenger

Why can I not compare two arrays of 4 elements ?
PostPosted: Wed Dec 03, 2008 9:26 pm     Reply with quote

The value of my compare function doesn't return the truth value although
I tried every solution but it still doesn't return the right value. Someone please help me!
Here is my code:

First solution:
Code:

int compare2(int8 a[4],int8 b[4]){
   //compare the fourth element first because it storage the highestvalue   //in the array,the lowest value is the first element
   if(b[3]<a[3]){
      return 1;
   }else if(b[3]==a[3]){
      if(b[2]<a[2]){
         return 1;
      }else if(b[2]==a[2]){
         if(b[1]<a[1]){
            return 1;
         }else if(b[1]==a[1]){
            if(b[0]<a[0]){
               return 1;
            }else if(b[0]==a[0]){
               return 3;
            }else
               return 2;
         }else
            return 2;
      }else
         return 2;
   }else
      return 2;
}


Second solution:
Code:

int compare2(int8 *a, int8 *b)
{
int index = 3;
for (count = 0; count < 4; count++)
{
if (b[index] < a[index])
return 1; // Less
else if (b[index] > a[index])
return 2; // Greater
index--;
}
return(1); // Equal

}


Third solution:
Code:

int compare2(int8 a[4], int8 b[4])
{
int index = 3;
for (count = 0; count < 4; count++)
{
if (b[index] < a[index])
return 1; // Less
else if (b[index] > a[index])
return 2; // Greater
index--;
}
return(1); // Equal

}
PCM programmer



Joined: 06 Sep 2003
Posts: 21708

View user's profile Send private message

PostPosted: Wed Dec 03, 2008 9:48 pm     Reply with quote

You are a newbie. Consider this idea before you invent new code:
Most of the simple things in C programming already have a function
to do them. This includes the idea of "comparing two arrays".
When you want to do a simple thing, first you should look at a list of
common C functions. Look to see if a function exists to solve your
problem. Use Google to find the list.

http://www.ccsinfo.com/forum/viewtopic.php?t=36476&highlight=memcmp
http://www.ccsinfo.com/forum/viewtopic.php?t=36705&highlight=memcmp
Wayne_



Joined: 10 Oct 2007
Posts: 681

View user's profile Send private message

PostPosted: Thu Dec 04, 2008 9:04 am     Reply with quote

Hi,
I gave you that second piece of code and I have also told you that I made a couple of mistakes in it. Below is the corrected code which I had already sent you.

Code:

int compare2(int8 *a, int8 *b)
{
  int index = 3;
  int count;  // This is where the first fault was
  for (count = 0; count < 4; count++)
  {
    if (b[index] < a[index])
      return 1; // Less
    else if (b[index] > a[index])
      return 2; // Greater
    index--;
  }
  return(3); // Equal (This is where the second fault was)
}


I have now tested this and sent you my test code which proves that it works.

If you are still having problems with it then feel free to post here or PM me to try and get it sorted. Smile

PCM programmer, Yes there are functions to compare arrays, in paticular strings. What t90 has are 2 arrays of BCD values and he needs to compare in the following order index 3 then index 2 then index 1 and finaly index 0. I found it easier to provide him with this code than try and find a function to do what he wants.
It may be possible that memcmp or even strcmp will give the correct results but it would have taken me longer to work it out LOL Smile

If he was to re-arange his data then the compare functions may provide a better solution, I have no idea if he can do this though!

Anyway, this code does work for what he wants, If he annot get it to work then he must be doing something wrong!
Display posts from previous:   
Post new topic   Reply to topic    CCS Forum Index -> General CCS C Discussion All times are GMT - 6 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group