C语言中的指针数组



什么是指针数组?

就像整数数组保存一组整型变量一样,**指针数组**将保存指针类型的变量。这意味着指针数组中的每个变量都是一个指针,指向另一个地址。

数组的名称可以用作指针,因为它保存数组第一个元素的地址。如果我们将数组的地址存储在另一个指针中,那么就可以使用指针来操作数组指针运算

创建指针数组

要在 C 语言中创建指针数组,需要像声明指针一样声明指针数组。使用数据类型,然后是星号,然后是标识符(指针数组变量名),后面跟着一个包含数组大小的下标([])。

在指针数组中,每个元素都包含指向特定类型的指针。

创建指针数组的示例

以下示例演示了如何创建和使用指针数组。在这里,我们声明了三个整型变量,为了访问和使用它们,我们创建了一个指针数组。借助指针数组,我们打印了变量的值。

#include <stdio.h>

int main() {
  // Declaring integers
  int var1 = 1;
  int var2 = 2;
  int var3 = 3;

  // Declaring an array of pointers to integers
  int *ptr[3];

  // Initializing each element of
  // array of pointers with the addresses of
  // integer variables
  ptr[0] = &var1;
  ptr[1] = &var2;
  ptr[2] = &var3;

  // Accessing values
  for (int i = 0; i < 3; i++) {
    printf("Value at ptr[%d] = %d\n", i, *ptr[i]);
  }

  return 0;
}

输出

当以上代码编译并执行时,将产生以下结果:

Value of var[0] = 10
Value of var[1] = 100
Value of var[2] = 200

可能存在我们希望维护一个数组的情况,该数组可以存储指向“int”或“char”或任何其他可用数据类型的指针。

指向整数的指针数组

这是指向整数的指针数组的声明:

int *ptr[MAX];

它将ptr声明为一个包含 MAX 个整型指针的数组。因此,ptr中的每个元素都保存指向int值的指针。

示例

以下示例使用三个整数,它们存储在指针数组中,如下所示:

#include <stdio.h>
 
const int MAX = 3;
 
int main(){

   int var[] = {10, 100, 200};
   int i, *ptr[MAX];
 
   for(i = 0; i < MAX; i++){
      ptr[i] = &var[i]; /* assign the address of integer. */
   }
   
   for (i = 0; i < MAX; i++){
      printf("Value of var[%d] = %d\n", i, *ptr[i]);
   }
   
   return 0;
}

输出

当以上代码编译并执行时,将产生以下结果:

Value of var[0] = 10
Value of var[1] = 100
Value of var[2] = 200

指向字符的指针数组

您还可以使用指向字符的指针数组来存储字符串列表,如下所示:

#include <stdio.h>
 
const int MAX = 4;
 
int main(){

   char *names[] = {
      "Zara Ali",
      "Hina Ali",
      "Nuha Ali",
      "Sara Ali"
   };
   
   int i = 0;

   for(i = 0; i < MAX; i++){
      printf("Value of names[%d] = %s\n", i, names[i]);
   }
   
   return 0;
}

输出

当以上代码编译并执行时,将产生以下结果:

Value of names[0] = Zara Ali
Value of names[1] = Hina Ali
Value of names[2] = Nuha Ali
Value of names[3] = Sara Ali

指向结构体的指针数组

当您有一个结构体列表并希望使用指针来管理它时。您可以声明一个结构体数组来访问和操作结构体列表。

示例

以下示例演示了指向结构体的指针数组的使用。

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

// Declaring a structure
typedef struct {
  char title[50];
  float price;
} Book;

const int MAX = 3;
int main() {
  Book *book[MAX];

  // Initialize each book (pointer)
  for (int i = 0; i < MAX; i++) {
    book[i] = malloc(sizeof(Book));
    snprintf(book[i]->title, 50, "Book %d", i + 1);
    book[i]->price = 100 + i;
  }

  // Print details of each book
  for (int i = 0; i < MAX; i++) {
    printf("Title: %s, Price: %.2f\n", book[i]->title, book[i]->price);
  }

  // Free allocated memory
  for (int i = 0; i < MAX; i++) {
    free(book[i]);
  }

  return 0;
}

输出

当以上代码编译并执行时,将产生以下结果:

Title: Book 1, Price: 100.00
Title: Book 2, Price: 101.00
Title: Book 3, Price: 102.00
广告