Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a character array

char word[30]; 

that keeps a word that the user will input and i want to sort the letters for example if the word is "cat" i want it to make it a "act" I suppose is rather easy task but as a beginner in C programming i find the examples on the internet rather confusing.

This is my code trying to do the buble sort...

Still doesnt work

#include <stdio.h>
#include<string.h>

#define MAX_STRING_LEN 30

main()
{
char w1[30], w2[30];
char tempw1[30], tempw2[30];
int n,i,k;
char temp;  
    printf("Give the first word: ");
    scanf("%s",&w1);
    printf("Give the second word: ");
    scanf("%s",&w2);
        if(strlen(w1)==strlen(w2)) /* checks if words has the same length */
            {
            strcpy(tempw1,w1); /*antigrafei to wi string sto tempw1 */ 
            strcpy(tempw2,w2); /*antigrafei to w2 string sto tempw2 */ 
            n=strlen(w1);


             for (i=1; i<n-1; i++)
               {
                                for (k=n;k>i+1;k--)
                    {
                        if (w1[k] < w1[k-1])
                            {
                                temp=w1[k-1];
                                w1[k-1]=w1[k];
                                w1[k]=temp;
                            }
                     }
            }
             for (i=1; i<n-1; i++)
               {
                                for (k=n;k>i+1;k--)
                    {
                        if (w2[k] < w2[k-1])
                            {
                                temp=w2[k-1];
                                w2[k-1]=w2[k];
                                w2[k]=temp;
                            }
                     }
                } 
            printf("%s \n",tempw1);
            printf("%s \n",w1);
            printf("%s \n",tempw2);
            printf("%s \n",w2);
            /* call qsort */
            /* call compare */
            }
        else printf(" \n H lexh %s den einai anagrammatismos tis lexhs %s",w1,w2);
    return 0;St
share|improve this question
what have you tried besides googling? – Aniket Feb 16 at 14:08
one of the easier sorting algorithms is bubble sort. – dutt Feb 16 at 14:11
ok thank you for the bubble sort suggestion i thought that this will only work in integers! Ill try it right away , the programm i am trying to work is an anagram game as an excersise i have solved all the other parts that i compare the two arrays but needed to sort them first to compare. – poseidon11 Feb 16 at 14:19
@poseidon11 1. characters are integers. 2. You can come up with some sort of algorithm that compares objects based on their properties, else there wouldn't be generic sorting algorithms. – H2CO3 Feb 16 at 14:22

2 Answers

Use qsort() from the C standard library:

int compare(const void *a, const void *b)
{
    return *(const char *)a - *(const char *)b;
}

char arr[] = "dbaurjvgeofx";

printf("Unsorted: %s\n", arr);
qsort(arr, strlen(arr), 1, compare);
printf("Sorted: %s\n", arr);
share|improve this answer
Thanks alot that was realy helpfull !!! – poseidon11 Feb 17 at 11:43
@poseidon11 Please accept my answer if it helped, thanks. – H2CO3 Feb 17 at 11:45

This is fundamental programming knowledge and you'd be doing yourself a favor by solving it yourself..

That being said, here's a quick pseudo

for i is equal to 1 to length of array
  for k is equal to i to length of array
   if i > k
    temp = i
    i = k
    k = temp
   endif
  endfor
endfor
share|improve this answer
1  
This isn't quick sort. Oh--after rereading I guess maybe he wasn't looking for the quick sort algorithm... just a "quick" sort. Lol. – Wes Freeman Feb 16 at 14:34
thanks alot for the help i tryed bubble sort all day but i couldnt do it for some reason , finaly got it working with qsort :D – poseidon11 Feb 17 at 11:43

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.