簡體   English   中英

指向字符數組的指針

[英]Pointer to Pointer to Char Array

我的功能passwordschar**作為輸入。 我需要將特定字符放置在某個位置的功能。 我的程序崩潰了,我不確定自己在做什么錯,但是我將其范圍縮小到了指針:

// The function
int passwords(int num, int line, char** letters, char** ptrPassword, int length) {
    char* password = *ptrPassword;

    // Later in the code
    password[location] = letters[line][0];
}

這是我的主要電話:

char** password;
password = malloc(length * sizeof(char));
location = length;

//call function
printf("Password at %d is %s \n", rank, passwords(rank, 0, letters, password, length));

我對指針的經驗不是很豐富,有人可以幫忙嗎?

主要:

#include<stdio.h>
#include<stdlib.h>

int passwords(int num, int line, char** letters, char** ptrPassword, int length);
int lengthOfString(char* string);
void print(char** letters, int length);

int location;

int main(){
    int numCase;
    scanf("%d", &numCase);

    int i, length;
    for(i = 0; i < numCase; i++){
        scanf("%d", &length);
        int j;
        char** letters = malloc(length*sizeof(char*));

        for(j = 0; j < length; j++){
            letters[j] = calloc(26, sizeof(char));
            scanf("%s", letters[j]);
        }
        int rank;
        scanf("%d", &rank);

        //print(letters, j);


        char* password;
        password = malloc(length * sizeof(char));
        location = length;

        //call recursion
        printf("Password at %d is %s \n", rank, passwords(rank, 0, letters, &password, length));
    }

    return 0;
}

整個功能:

//recursive function
int passwords(int num, int line, char** letters, char** ptrPassword, int length){
    char* password = *ptrPassword;
    printf("Recursion #%d \n", line);
    if(line == length-1){
        printf("Line is equal to length \n");
        if(num > lengthOfString(letters[line])){
            printf("IF \n");
            if(num % lengthOfString(letters[line]) == 0){
                password[location] = letters[line][lengthOfString(letters[line])];
            }
            else{
                password[location] = letters[line][num % lengthOfString(letters[line]) - 1];
            }
            printf("location: %d \n", location);
            location--;
            printf("Password is: %s \n", password);
        }
        else{
            printf("ELSE \n");
            if(num / lengthOfString(letters[line]) == 1){
                *password[location] = letters[line][0];
            }
            else{
                printf("Alocation: %d \n", location);
                password[location] = letters[line][num / lengthOfString(letters[line])];
            }
            printf("Blocation: %d \n", location);
            location--;
            printf("Password is: %s \n", password);
        }
        return lengthOfString(letters[line]);
    }
    else{
        printf("Line is not equal to length \n");
        int scalar = passwords(num, ++line, letters, ptrPassword, length);
        if (num > scalar){
            if(num % scalar == 0){
                password[location] = letters[line][lengthOfString(letters[line])];
            }
            else{
                password[location] = letters[line][num % scalar - 1];
            }
            location--;
        }
        else{
            if(num / scalar == 1){
                password[location] = letters[line][0];
            }
            else{
                password[location] = letters[line][num / lengthOfString(letters[line])];
            }
            location--;
        }
        return scalar * lengthOfString(letters[line]);
    }
}

更改此行

printf("Password at %d is %s \n", rank, passwords(rank, 0, letters, &password, length));

printf("Password at %d is %d \n", rank, passwords(rank, 0, letters, &password, length));

由於您的passwords函數返回整數,而不是字符串( char * )。 從編譯器警告中也可以明顯看出這一點。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM