BFS making key list of *char list array, mostly indexing and mallocing

89 Views Asked by At

I would like some professional advice for making a char *x array of strings (of const char names with different sizes) Would someone help with mallocing a list to fit the size of a structure name ( qSep->front->name))

Attempt 1: Well my base case works, so I started making multiple print statements. The first one doesn't get put in. My gdb causes error at printf("Found in List %s has name\n", x[0]);

Code and then data structures below.

size_t separation( const User *user1, const User *user2 ) {
    int len= 0;
    char *x;    

                                //use contains
    queueSep *qSep =(struct queueSep*) malloc(sizeof(struct queueSep));
    int count = 0;

    //pre-condition: the user is not the same as user2
    if ( user1->name == user2->name ) {             //str compare
            return 0;
        }
    qSep->front = convert(user1, NULL, count);
    printf("Conversion complete for %s \n",qSep->front->name);
    len++;
    x = malloc(len*sizeof((const char*)qSep->front->name));
    x[len-1] = qSep->front->name;
    printf("Found in List %s has name\n", x[0]);
    while( qSep->front != NULL) {
        //check if front of the queue is the finish USER
        if ( (const char*)qSep->front->name == user2->name ) {
            return qSep->front->separationCount;

        } else {                            //add all the neighbours on the queue with separation size incremented

        struct node *currAmigo = qSep->front->sepAmigos->amigos_Queue->front;


        if ( currAmigo == NULL ) {
            //is that a bad thing?
        }
        while ( currAmigo != NULL ) {
            for(int i = 0; i < len; ++i) {
                printf("List amigo for %s has name %s\n", currAmigo->data->name, x[i]);
                /*
                //if(strcmp(x[i], currAmigo->data->name))
                {
                    goto end_nested_loop;
                }
                */
            }

            //make a qSep node
            struct sepNode *node = convert(currAmigo->data, NULL, count+1);
            len++;
            x = realloc(x, len*sizeof(int));
            x[len-1] = currAmigo->data->name;
            //insert the sepNode into the end of the queue
            que_insSepqueue(qSep, node);

            //go to Next Amigo in top of Queue
            currAmigo=currAmigo->next;  
        }
        end_nested_loop:

        count++;
        //remove the node
        que_deqSep( qSep ); 
        }
    }

    return -1;
}

Converted Struct

typedef struct sepNode {

    const char *name;
    struct Friends_struct *sepAmigos;
    size_t *separationCount;
    struct sepNode *sepNodeNext;
}sepNode;

typedef struct queueSep{
    struct sepNode *front;              //front of queue
}queueSep;
//How to make a list

typedef struct User_struct {
    const char *name;
    Friends amigos;
} User;

EXTRA ( to convert a node to say separation length)

sepNode *convert( const User *user1, const User *user2, int count) {
    sepNode *sepNode1=
    sepNode1 = (struct sepNode*) malloc(sizeof(struct sepNode));

    sepNode1->name = user1->name;
    sepNode1->sepAmigos = user1->amigos;
    sepNode1->separationCount = count;
    sepNode1->sepNodeNext = NULL;

    return sepNode1;
    }
1

There are 1 best solutions below

0
On BEST ANSWER

Using a pointer list

char *x;

You have indexes that need to be malloc instead of

   x = malloc(len*sizeof((const char*)qSep->front->name));
    x[len-1] = qSep->front->name;

Malloc the size of the first index with

x[len-1] = malloc(sizeof(char)*sizeof(qSep->front->name));       //redundant sizeof(char) =1 
                                                                  //just to illustrate
x[len-1] = qSep->front->name;

Also, if anyone knows if I can just free(x); in one line, that would be helpful in a comment.