不调用函数库函数C语言
时间: 2023-08-09 13:04:17 浏览: 81
好的,以下是使用指针和二维数组实现字符串排序的示例代码,不依赖任何函数库:
```c
#include <stdio.h>
#include <string.h>
// 比较函数,用于指定排序方式
int cmp(const char *a, const char *b) {
return strcmp(a, b) > 0;
}
// 字符串排序函数
void sortStrings(char **str, int n, int (*cmp)(const char *, const char *)) {
char *temp;
for (int i = 0; i < n-1; i++) {
for (int j = 0; j < n-1-i; j++) {
if (cmp(str[j], str[j+1])) {
temp = str[j];
str[j] = str[j+1];
str[j+1] = temp;
}
}
}
}
int main() {
const int n = 5;
char str[n][100]; // 存储5个字符串
char *p[n]; // 指针数组,指向每个字符串的首字符
printf("请输入5个字符串:\n");
for (int i = 0; i < n; i++) {
scanf("%s", str[i]);
p[i] = str[i];
}
sortStrings(p, n, cmp); // 调用字符串排序函数排序
printf("排序后的结果为:\n");
for (int i = 0; i < n; i++) {
printf("%s\n", p[i]);
}
return 0;
}
```
在本例中,使用了一个指针数组p来存储每个字符串的首字符地址,然后调用字符串排序函数sortStrings来排序。在排序函数中,使用冒泡排序的思想对字符串进行比较和交换。最后在主函数中输出排序后的结果。
需要注意的是,在比较函数中使用了C语言标准库中的strcmp函数来比较两个字符串的大小。
阅读全文