免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2651 | 回复: 7
打印 上一主题 下一主题

[C] 《c prime plus》一个习题,关于指针数组的赋值问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2012-08-10 10:57 |只看该作者 |倒序浏览
[ 本帖最后由 xiaowh00 于 2012-08-10 17:01 编辑 ]

#include <stdio.h>
#include <string.h>
#include <ctype.h>

#define MAX 5
#define LEN 100

// Write a program that reads in up to 10 strings or to EOF, whichever comes first. Have it offer the user a menu with five choices: print the original list of strings, print the strings in ASCII collating sequence, print the strings in order of increasing length, print the strings in order of the length of the first word in the string, and quit. Have the menu recycle until the user enters the quit request. The program, of course, should actually perform the promised tasks.

void menu(void);
void print_original(char *[],int);
void print_ascii(char *[],int);
void print_all_length(char *[],int);
void print_first_length(char *[],int);

int main(void)
{
        char input[MAX][LEN];
        char *ptr[MAX];
        int count=0;
        int choice;

        printf("Input some strings (less than %d)\n",MAX);
        while(count<MAX && gets(input[count])!=NULL && input[count][0]!=EOF)
        {
                ptr[count]=input[count];
                count++;
        }

        while(menu(),scanf("%d",&choice)==1)
        {
                switch(choice)
                {
                        case 1 : print_original(ptr,count);
                                 break;
                        case 2 : print_ascii(ptr,count);
                                 break;
                        case 3 : print_all_length(ptr,count);
                                 break;
                        case 4 : print_first_length(ptr,count);
                                 break;
                        case 5 : return 0;
                                 break;
                        default : continue;
                }
        }

        return 0;
}

void menu(void)
{
        printf("========================================================================\n");
        printf(" 1) print the original list of strings\n");
        printf(" 2) print the strings in ASCII collating sequence\n");
        printf(" 3) print the strings in order of increasing length\n");
        printf(" 4) print the strings in order of the length of the first word in string\n");
        printf(" 5) quit\n");
        printf("========================================================================\n");
}

void print_original(char *str[],int n)
{
        int i=0;

        while(i<n)
                puts(str[i++]);
}

void print_ascii(char *str[],int n)
{
        int i,j;
        char *temp;

        for(i=0;i<n;i++)
                for(j=i;j<n;j++)
                        if(strcmp(str[i],str[j])>0)
                        {
                                temp=str[i];
                                str[i]=str[j];
                                str[j]=temp;
                        }
        for(i=0;i<n;i++)
                puts(str[i]);
}

void print_all_length(char *str[],int n)
{
        int i,j;
        char *temp;

        for(i=0;i<n;i++)
                for(j=i;j<n;j++)
                        if(strlen(str[i])>strlen(str[j]))
                        {
                                temp=str[i];
                                str[i]=str[j];
                                str[j]=temp;
                        }
        for(i=0;i<n;i++)
                puts(str[i]);
}

void print_first_length(char *str[],int n)
{

        int len[n];
        int i,j;
        char *start,*end,*temp;
       
        for(i=0;i<n;i++)
        {
                while(*str[i])
                {
                        if(isspace(*str[i]))
                        {
                                while(isspace(*str[i]))
                                        str[i]++;
                                start=str[i];
                        }
                        else
                                start=str[i];
                        str[i]++;
                        while(! isspace(*str[i]))
                                str[i]++;
                        end=str[i];
                }
                len[i]=end-start;
        }

        for(i=0;i<n;i++)
                for(j=i;j<n;j++)
                        if(len[i]>len[j])
                        {
                                temp=str[i];
                                str[i]=str[j];
                                str[j]=temp;
                        }

        for(i=0;i<n;i++)
                puts(str[i]);
}

前面三个功能测试基本没问题,就是第四个函数void print_first_length(char *str[],int n) 按照输入字符串的第一个单词的长度输出,我测试的时候就就直接提示段错误,我的思路大概就是针对每个字符串,用start定位他的第一个非空的字符,然后用end定位后面开始的第一个空字符,将end-start的值保存到len[i]
不知道是不是int len[n]; 可变长度的数组导致的,求大神指点,我新手,看《c prime plus》一个多月

论坛徽章:
0
2 [报告]
发表于 2012-08-10 16:25 |只看该作者
gdb调一下,即便是段错也会告诉你是哪一行代码导致段错,根据那行代码再来看是什么问题。

论坛徽章:
0
3 [报告]
发表于 2012-08-10 16:37 |只看该作者
[ 本帖最后由 xiaowh00 于 2012-08-10 16:59 编辑 ]

谢谢回复,原因我已经找到了,是我判断的逻辑错误了,现在我的基本功能已经实现了,但是还有一个问题,就是我测试各个功能的时候,没法往回测试了
在各个函数中,我怎么声明一个局部变量来保存 void print_ascii(char *str[],int n)中的char *str[]。
比如我输入
aaa
bb
输入1,按照原来的顺序输出,然后在输入2,按照ascii输出,但是当我在输入1的时候,没法按照原来的输出了,我是觉得应该在每个函数中声明一个局部变量来保存传递过来的char *str[],但是我不知道怎么做,请高手指点?


#include <stdio.h>
#include <string.h>
#include <ctype.h>

#define MAX 5
#define LEN 100

// Write a program that reads in up to 10 strings or to EOF, whichever comes first. Have it offer the user a menu with five choices: print the original list of strings, print the strings in ASCII collating sequence, print the strings in order of increasing length, print the strings in order of the length of the first word in the string, and quit. Have the menu recycle until the user enters the quit request. The program, of course, should actually perform the promised tasks.

void menu(void);
void print_original(char *[],int);
void print_ascii(char *[],int);
void print_all_length(char *[],int);
void print_first_length(char *[],int);

int main(void)
{
        char input[MAX][LEN];
        char *ptr[MAX];
        int count=0;
        int choice;

        printf("Input some strings (less than %d)\n",MAX);
        while(count<MAX && gets(input[count])!=NULL && input[count][0]!=EOF)
        {
                ptr[count]=input[count];
                count++;
        }

        while(menu(),scanf("%d",&choice)==1)
        {
                switch(choice)
                {
                        case 1 : print_original(ptr,count);
                                 break;
                        case 2 : print_ascii(ptr,count);
                                 break;
                        case 3 : print_all_length(ptr,count);
                                 break;
                        case 4 : print_first_length(ptr,count);
                                 break;
                        case 5 : return 0;
                                 break;
                        default : continue;
                }
        }

        return 0;
}

void menu(void)
{
        printf("========================================================================\n");
        printf(" 1) print the original list of strings\n");
        printf(" 2) print the strings in ASCII collating sequence\n");
        printf(" 3) print the strings in order of increasing length\n");
        printf(" 4) print the strings in order of the length of the first word in string\n");
        printf(" 5) quit\n");
        printf("========================================================================\n");
}

void print_original(char *str[],int n)
{
        int i=0;

        while(i<n)
                puts(str[i++]);
}

void print_ascii(char *str[],int n)
{
        int i,j;
        char *temp;

        for(i=0;i<n;i++)
                for(j=i;j<n;j++)
                        if(strcmp(str[i],str[j])>0)
                        {
                                temp=str[i];
                                str[i]=str[j];
                                str[j]=temp;
                        }
        for(i=0;i<n;i++)
                puts(str[i]);
}

void print_all_length(char *str[],int n)
{
        int i,j;
        char *temp;

        for(i=0;i<n;i++)
                for(j=i;j<n;j++)
                        if(strlen(str[i])>strlen(str[j]))
                        {
                                temp=str[i];
                                str[i]=str[j];
                                str[j]=temp;
                        }
        for(i=0;i<n;i++)
                puts(str[i]);
}

void print_first_length(char *str[],int n)
{

        int len[n];
        int i,j;
        char *start,*end,*temp;

        for(i=0;i<n;i++)
        {
                temp=str[i];
                if(isspace(*temp))
                {
                        while(isspace(*temp))
                                temp++;
                        start=temp;
                        for(;;temp=str[i]+1)
                        {
                                if(isspace(*temp) || *temp=='\0')
                                {
                                        end=temp;
                                        break;
                                }
                        }
                }
                else
                {
                        start=temp;
                        for(;;temp++)
                        {
                                if(isspace(*temp) || *temp=='\0')
                                {
                                        end=temp;
                                        break;
                                }
                        }
                }
                len[i]=end-start;
        }
        for(i=0;i<n;i++)
                printf("%d\n",len[i]);
        for(i=0;i<n;i++)
                for(j=i;j<n;j++)
                        if(len[i]>len[j])
                        {
                                temp=str[i];
                                str[i]=str[j];
                                str[j]=temp;
                        }

        for(i=0;i<n;i++)
                puts(str[i]);
}
[b]回复 [url=forum.php?mod=redirect&goto=findpost&pid=&ptid=3764297]2#[/url] [color=Olive]lenky0401[/color] [/b]


   

论坛徽章:
0
4 [报告]
发表于 2012-08-10 16:54 |只看该作者
[ 本帖最后由 xiaowh00 于 2012-08-10 16:58 编辑 ]

void print_first_length(char *str[],int n)
{

        int len[n];
        int i,j;
        char *start,*end,*temp;
        char *ptr[n];
       
        for(i=0;i<n;i++)
                ptr[i]=str[i];
我在每个函数的开头加入上面一行代码最终完成了题目的要求,偶然想到的,试了一下,发现可以,但是还不是很理解
我开始用ptr=str或者ptr[0]=str[0],都不行,版主指点下? 学了差不多两个多月了,感觉没什么进步,没啥动力了。。。

[b]回复 [url=forum.php?mod=redirect&goto=findpost&pid=&ptid=3764297]2#[/url] [color=Olive]lenky0401[/color] [/b]


   

论坛徽章:
0
5 [报告]
发表于 2012-08-10 16:55 |只看该作者
[ 本帖最后由 xiaowh00 于 2012-08-10 17:05 编辑 ]

最终代码如下,高手指点下,本人新手,纯粹爱好,开始学C语言

#include <stdio.h>
#include <string.h>
#include <ctype.h>

#define MAX 3
#define LEN 100

// Write a program that reads in up to 10 strings or to EOF, whichever comes first. Have it offer the user a menu with five choices: print the original list of strings, print the strings in ASCII collating sequence, print the strings in order of increasing length, print the strings in order of the length of the first word in the string, and quit. Have the menu recycle until the user enters the quit request. The program, of course, should actually perform the promised tasks.

void menu(void);
void print_original(char *[],int);
void print_ascii(char *[],int);
void print_all_length(char *[],int);
void print_first_length(char *[],int);

int main(void)
{
        char input[MAX][LEN];
        char *ptr[MAX];
        int count=0;
        int choice;

        printf("Input some strings (less than %d)\n",MAX);
        while(count<MAX && gets(input[count])!=NULL && input[count][0]!=EOF)
        {
                ptr[count]=input[count];
                count++;
        }

        while(menu(),scanf("%d",&choice)==1)
        {
                switch(choice)
                {
                        case 1 : print_original(ptr,count);
                                 break;
                        case 2 : print_ascii(ptr,count);
                                 break;
                        case 3 : print_all_length(ptr,count);
                                 break;
                        case 4 : print_first_length(ptr,count);
                                 break;
                        case 5 : return 0;
                                 break;
                        default : continue;
                }
        }

        return 0;
}

void menu(void)
{
        printf("========================================================================\n");
        printf(" 1) print the original list of strings\n");
        printf(" 2) print the strings in ASCII collating sequence\n");
        printf(" 3) print the strings in order of increasing length\n");
        printf(" 4) print the strings in order of the length of the first word in string\n");
        printf(" 5) quit\n");
        printf("========================================================================\n");
}

void print_original(char *str[],int n)
{
        int i=0;

        while(i<n)
                puts(str[i++]);
}

void print_ascii(char *str[],int n)
{
        int i,j;
        char *temp;
        char *ptr[n];

        for(i=0;i<n;i++)
                ptr[i]=str[i];

        for(i=0;i<n;i++)
                for(j=i;j<n;j++)
                        if(strcmp(ptr[i],ptr[j])>0)
                        {
                                temp=ptr[i];
                                ptr[i]=ptr[j];
                                ptr[j]=temp;
                        }
        for(i=0;i<n;i++)
                puts(ptr[i]);
}

void print_all_length(char *str[],int n)
{
        int i,j;
        char *temp;
        char *ptr[n];
       
        for(i=0;i<n;i++)
                ptr[i]=str[i];

        for(i=0;i<n;i++)
                for(j=i;j<n;j++)
                        if(strlen(ptr[i])>strlen(ptr[j]))
                        {
                                temp=ptr[i];
                                ptr[i]=ptr[j];
                                ptr[j]=temp;
                        }
        for(i=0;i<n;i++)
                puts(ptr[i]);
}

void print_first_length(char *str[],int n)
{

        int len[n];
        int i,j;
        char *start,*end,*temp;
        char *ptr[n];
       
        for(i=0;i<n;i++)
                ptr[i]=str[i];

        for(i=0;i<n;i++)
        {
                temp=ptr[i];
                if(isspace(*temp))
                {
                        while(isspace(*temp))
                                temp++;
                        start=temp;
                        for(;;temp++)
                        {
                                if(isspace(*temp) || *temp=='\0')
                                {
                                        end=temp;
                                        break;
                                }
                        }
                }
                else
                {
                        start=temp;
                        for(;;temp++)
                        {
                                if(isspace(*temp) || *temp=='\0')
                                {
                                        end=temp;
                                        break;
                                }
                        }
                }
                len[i]=end-start;
        }
        for(i=0;i<n;i++)
                printf("%d\n",len[i]);
        for(i=0;i<n;i++)
                for(j=i;j<n;j++)
                        if(len[i]>len[j])
                        {
                                temp=ptr[i];
                                ptr[i]=ptr[j];
                                ptr[j]=temp;
                        }

        for(i=0;i<n;i++)
                puts(ptr[i]);
}


[b]回复 [url=forum.php?mod=redirect&goto=findpost&pid=&ptid=3764297]1#[/url] [color=Olive]xiaowh00[/color] [/b]


   

论坛徽章:
0
6 [报告]
发表于 2012-08-10 17:52 |只看该作者
回复 5# xiaowh00


    first_length是什么啊? 第一个参数的长度?

论坛徽章:
0
7 [报告]
发表于 2012-08-13 08:48 |只看该作者
这个函数是计算每个输入字符串的第一个单词的长度,比如我输入
a ccccasdf
cdf xx
那么第一个字符串计算的结果是1
第二个是 3
回复 6# FaintKnowledge


   

论坛徽章:
0
8 [报告]
发表于 2012-08-13 09:02 |只看该作者
回复 7# xiaowh00


     那我 明白了...
     你该看下main(char *argv[],int argc){} 这节...
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP