关于字符串类型与字符数组(指针)

又在字符串上栽了个跟头,上次也在链表指针上弄了个晕头转向:
 void swap(char*a, char*b) {
	char temp[10];
	//strcpy只会赋值有存储空间的字符串
	strcpy(temp, a);
	strcpy(a,b);
	strcpy(b, temp);
}
void PrintStr(char str[][10],int n) {
	for (int i = 1; i <= n; i++) {
		if (i == n)	printf("%s\n", str[i]);
		else printf("%s ", str[i]);
	}
}
void swap2(char**a, char**b) {
	char*temp;
	temp = *a;
	*a = *b;
	*b = temp;
}
//此时字符串可以完全当做一个变量来使用
int main() {
	char str[100][10] = { "dsfsd","come","sdfg" };
	swap(str[0], str[1]);
	PrintStr(str, 3);
	char*a = "dfdf";
	char*b = "aaad";
	swap2(&a, &b);//此交换只是复制的另外一份
	printf("%s  %s", a, b);
	return 0;
}

总而言之,就是指针变量相当于一个新的变量,在函数中必须建一个指针变量指向这个指针变量才能改变这个变量的值

忘记的话尝试就尝试一下上面的代码

#include<stdio.h>
#include<stdlib.h>
#include<string.h>
void swap2(char**a, char**b) {
	char*temp;
	temp = *a;
	*a = *b;
	*b = temp;
}
void permut(char**str, int start) {
	if (start == 4) {
		for (int i = 0; i < 4; i++) printf("%s\t", str[i]);
		printf("\n");
	}
	for (int j = start; j < 4; j++) {
		swap2(str+start, str+j);
		permut(str, start + 1);
		swap2(str + start, str + j);
	}
}
int main() {
	char*str[] = { "I'm","a","big","god"};
	permut(str, 0);
	return 0;
}

以上是测试的字符串数组的全排列。

字符串(也泛指其它指针变量)可以用malloc和new来给一个赋值空间,但其还是按照一个指针变量来处理

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值