C语言-使用指向指针的指针的方法对5个字符串排序并输出

使用指向指针的指针的方法对5个字符串排序并输出

注意:

在C语言中,二维字符数组的数组名实际上不是指向二级指针的,而是隐含地形成了一种特殊的"间接引用"或者说"偏移地址"。当你声明一个二维字符数组如char arr[3][4]时,虽然它的名字arr本身并不是直接指向另一个指针,但实际上它代表了数组首元素在内存中的起始地址。

具体程序:

c 复制代码
#define _CRT_SECURE_NO_WARNINGS 1
#include<stdio.h>
#include<string.h>
int main()
{
	char str[5][30];
	char* pstr[5];
	int i;
	for (i = 0; i < 5; i++)
	{
		pstr[i] = str[i];
		scanf("%s", *(pstr + i));
	}
	void sort(char** pstr);
	printf("------------\n");
	sort(pstr);
	for (i = 0; i < 5; i++)
	{
		printf("%s\n", *(pstr + i));
	}
	return 0;
}
void sort(char** pstr)
{
	int i, j;
	for (i = 0; i < 4; i++)
	{
		for (j = 0; j < 4 - i; j++)
		{
			if (strcmp(*(pstr + j), *(pstr + j + 1)) > 0)
			{
				char* temp = *(pstr + j);
				*(pstr + j) = *(pstr + j + 1);
				*(pstr + j + 1) = temp;
				/*char temp[30];
				strcpy(temp, *(pstr + j));
				strcpy(*(pstr + j), *(pstr + j + 1));
				strcpy(*(pstr + j + 1), temp);*/
			}
		}
	}
	
}

运行结果:

相关推荐
向宇it1 小时前
【从零开始入门unity游戏开发之——C#篇26】C#面向对象动态多态——接口(Interface)、接口里氏替换原则、密封方法(`sealed` )
java·开发语言·unity·c#·游戏引擎·里氏替换原则
@菜鸟进阶记@1 小时前
java根据Word模板实现动态填充导出
java·开发语言
卖芒果的潇洒农民1 小时前
Lecture 6 Isolation & System Call Entry
java·开发语言
AAA.建材批发刘哥1 小时前
Linux快速入门-Linux文件系统管理
linux·运维·服务器·c语言·学习方法
SomeB1oody1 小时前
【Rust自学】6.1. 定义枚举
开发语言·后端·rust
AC使者1 小时前
5820 丰富的周日生活
数据结构·算法
SomeB1oody1 小时前
【Rust自学】5.3. struct的方法(Method)
开发语言·后端·rust
cwj&xyp2 小时前
Python(二)str、list、tuple、dict、set
前端·python·算法
Kisorge2 小时前
【C语言】指针数组、数组指针、函数指针、指针函数、函数指针数组、回调函数
c语言·开发语言
轻口味3 小时前
命名空间与模块化概述
开发语言·前端·javascript