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

In the code below, final_set is an array of pointers. When I run the while loop (shown with comment), it runs for final_set[0] but it doesn't run for final_set[1] and gives the segmentation fault.

My motive is to make an array of arrays which have variable length. For example, an array of characters a[k][] where a[1] could have 5 chars and a[5] could have 7 chars and so on. I have to use minimum memory as the value of k is very large. So I am trying to do it with array of pointers. If anyone has a solution for any of these two problems, please help me out! Thanks.

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

void quickSortMain(char items[][2000], int count);
void quickSort(char items[][2000], int left, int right);

int main(void)
{
    int n,k=2001000,i=0,q,temp=0;
    printf("enter num of strings\n");
    scanf("%d",&n);
    char strings[n][2000];
    char *final_set[10];
    printf("enter strings\n");
    while(i<n)
    {
        scanf("%s",&strings[i]);
        int l=0,k=0;
        l=strlen(strings[i]);
        while(k<l)
        {
            int count=1;
            char *t=malloc(2000*sizeof(char));
            while(count<=(l-k))
            {
                strncpy(t,strings[i]+k,count);
                printf("t is :%s\n",t);
                int b=0,use=0;
                while(strlen(final_set[b]))//this loop runs for b=0 and gives seg fault for b=1..why?
                {
                    printf("t is :%s\n",t);
                    if(!strcmp(final_set[b],t))
                    {
                        printf("t is here :%s\n",t);
                        use=1;
                        break;
                    }

                    b++;
                    printf("t is not here:%s\n",t);
                }
                printf("t is :%s\n",t);
                if(use==1)
                {
                    count++;
                    continue;
                }
                final_set[temp]=malloc(count*sizeof(char));
                strcpy(final_set[temp],t);
                //  printf("element is: %s\n",final_set[temp]);
                //ok(final_set[temp]);
                temp++;
                count++;
            }
            k++;
        }
        i++;
    }
    quickSortMain(final_set,temp);
    i=0;
    printf("enter num of queries\n");
    scanf("%d",&q);
    int queries_k[q];
    while(i<q)
    {
        scanf("%d",&queries_k[i]);
        if(!strlen(final_set[queries_k[i]-1]))
            printf("INVALID");
        else
            printf("%s\n",final_set[queries_k[i]-1]);
        i++;
    }
}   

void quickSortMain(char items[][2000], int count)
{
    quickSort(items, 0, count-1);
}

void quickSort(char items[][2000], int left, int right)
{
    int i, j;
    char *x;
    char temp[10];

    i = left;
    j = right;
    x = items[(left+right)/2];

    do {
        while((strcmp(items[i],x) < 0) && (i < right)) {
            i++;
        }
        while((strcmp(items[j],x) > 0) && (j > left)) {
            j--;
        }
        if(i <= j) {
            strcpy(temp, items[i]);
            strcpy(items[i], items[j]);
            strcpy(items[j], temp);
            i++;
            j--;
        }
    } while(i <= j);

    if(left < j) {
        quickSort(items, left, j);
    }
    if(i < right) {
        quickSort(items, i, right);
    }
}
share|improve this question
1  
So what's the problem exactly? A code dump like this isn't going to appeal to anyone who might otherwise help you. – chrisaycock Jan 6 '12 at 6:04
Please phrase this as a question, not simply a (badly formatted) code dump with the title segmentation fault. Nobody is going to want to help you unless you explain where it's going wrong. – LaceySnr Jan 6 '12 at 6:05
@chrisaycock Sorry i have formatted it and explained it!! – Sushant Kochar Jan 6 '12 at 6:06
Have you tried running this in a debugger to see what exactly it is trying to do when the segmentation fault occurs? – Brooks Moses Jan 6 '12 at 6:11
2  
StackOverflow is not an 'on demand' homework service. You need to read How to Ask Questions the Smart Way because demanding that volunteers answer your question is not the smart way to ask them. You have to make it enticing for people to answer your question. – Jonathan Leffler Jan 6 '12 at 6:42
show 6 more comments

closed as not a real question by Kerrek SB, Michael Petrotta, Sergio Tulentsev, Jonathan Leffler, Neil Knight Jan 6 '12 at 9:16

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

Your code is somewhat rococo. You have too many 2000's scattered around for my comfort.

When I compile the code, I get the warnings:

$ gcc -O -std=c99 -Wall -Wextra  qs.c -o qs  
qs.c: In function ‘main’:
qs.c:18: warning: format ‘%s’ expects type ‘char *’, but argument 2 has type ‘char (*)[2000]’
qs.c:18: warning: format ‘%s’ expects type ‘char *’, but argument 2 has type ‘char (*)[2000]’
qs.c:60: warning: passing argument 1 of ‘quickSortMain’ from incompatible pointer type
qs.c:10: warning: unused variable ‘k’
$

All of those should be fixed. Other than that, I don't plan to analyze your code.

You are confusing me with that enormously complex input loop. If I were doing it, I'd simplify life a lot by using fgets() to read lines and then allocating a new string. There is no point in making people count; computers are better at that than humans are.

enum { MAX_STRINGS = 20 };
int main(void)
{
    char *array[MAX_STRINGS];
    for (i = 0; i < MAX_STRINGS; i++)
    {
        char buffer[4096];
        if (fgets(buffer, sizeof(buffer), stdin) == 0)
            break;
        size_t len = strlen(buffer);
        if (len <= 1)
            continue;         // Newline only - ignore
        buffer[len-1] = '\0'; // Zap newline
        array[i] = strdup(buffer);  // Copy of string
        if (array[i] == 0)
            break;
    }
    // At this point, array elements 0..i-1 contain strings
    // Now do the sorting, etc.

No, I've not run this past the compiler. There could be issues hidden in this code, but it is at least a plausible outline. This avoids scanf(); I find it is too hard for me to use it reliably so I don't. It deals with an array of pointers of a fixed maximum size (of 20). It's perfectly feasible to make that a dynamically allocated array that grows when necessary; I've simply not coded it for you. Note that strdup() is a widely available function but is not in standard C (but it is in POSIX). It duplicates a string; it is trivial to write if it isn't on your machine:

char *strdup(const char *old_str)
{
    size_t len = strlen(old_str) + 1;
    char *new_str = malloc(len);
    if (new_str != 0)
        memmove(new_str, old_str, len);  // memcpy() also works reliably here
    return new_str;
}

You will, of course, need to alter your sort functions to accept arrays of character pointers instead of a 2D array of characters.

share|improve this answer
ok .. let me make it clear what i want to do.. I have to save strings which can vary from 1 char string to 2000 char string. It is such that there are 2000 strings of 1 char and 1999 strings of 2 chars and so on upto 1 string of 2000 chars. Now suggest me a way to do this with in memory limit of around 2MB. – Sushant Kochar Jan 6 '12 at 7:41
That's a wholly different proposition from anything that was discussed in the main question. Have you done the arithmetic to see how much space that set of memory allocations needs? I've not, but it is a lot larger than 2 MB - because you need 1000 strings of 1000 characters (there goes 1 MB of your 2 MB), and you also need 999 strings of 1001 characters and 1001 strings of 999 characters, so there goes another 2 MB, and there are a lot of cases not yet covered. You may have a way to get that much data into that little space; you'll be rich if you do have a way to do it. I can't help, though. – Jonathan Leffler Jan 6 '12 at 8:04
Its just 2MB and I was trying to the same in the above question.Thanks anyways! – Sushant Kochar Jan 6 '12 at 8:13

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