C 语言中打印逆序数组的程序



要按逆序打印数组,我们需要预先知道数组的长度。然后,我们可以从数组的长度值开始迭代到 0,并且在每次迭代中,都可以打印数组索引的值。此数组索引应直接从迭代本身导出。

算法

让我们首先看看该程序的分步过程−

START
   Step 1 → Take an array A and define its values
   Step 2 → Loop for each value of A in reverse order 
   Step 3 → Display A[n] where n is the value of current iteration
STOP

伪代码

现在让我们看看此算法的伪代码−

procedure print_array(A)

   FOR from array_length(A) to 0
      DISPLAY A[n]
   END FOR
   
end procedure

实现

以上述伪代码为基础的实现如下−

#include <stdio.h>

int main() {
   int array[10] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 0};
   int loop;

   for(loop = 9; loop >= 0; loop--)
      printf("%d ", array[loop]);
      
   return 0;
}

输出应如下所示 −

0 9 8 7 6 5 4 3 2 1
array_examples_in_c.htm
广告