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);
}
}