要求使用指针的方法进行处理。 include <stdio.h> include <stdlib.h> include <string.h> void swap(char** a,char** b)//输入的参数是二级指针(指针的地址) { char* temp;//对指针(内容的地址)进行改变 temp= *a;//改变一件事,要传入它的地址,改变地址,就要传入地址的地址 *a= *b;//地址和指针...
C语言——输入3个字符串,按从小到大的顺序输出。要求使用指针的方法进行处理。 今天刷算法笔记的课后题时做到的一题。主要思想是使用冒泡。 #include<stdio.h>#include<math.h>#include<string.h>voidswap(char**p1,char**p2){char*temp;temp=*p1;*p1=*p2;*p2=temp;}intmain(){charstr[3][20],*p[3...
要求使用指针的方法进行处理。 1#include <iostream>2#include <cstring>3usingnamespacestd;4voidstrswap(char*&p,char*&q){5char*temp;6temp=p;7p=q;8q=temp;9}10intmain(){11#ifdef ONLINE_JUDGE12#else13freopen("in.txt","r",stdin);14#endif15chara[3][20],*p[3];16for(inti=0;i<3;i...