标题:顺序表中找相同元素,求指导????
只看楼主
ouyang001
Rank: 2
等 级:论坛游民
帖 子:3
专家分:20
注 册:2013-3-26
结帖率:100%
已结贴  问题点数:10 回复次数:1 
顺序表中找相同元素,求指导????
#include<stdlib.h>
#include<stdio.h>
#define size 5
typedef struct lnode{
    int data[size];
    int len;
}lnode;

void createlist(lnode &l)
{

    printf("please input number you want:\n");
    for(int i=0;i<l.len;i++)
        scanf("%2d",&l.data[i]);
    for(int j=0;j<l.len;j++)
        printf("the number is:\n",l.data[j]);

}
int account(lnode l,int x)
{
    int m=0;
    for(int i=0;i<l.len;i++)
    {    if(l.data[i]==x)
    m++;}
        return m;
}
void main()
{
    lnode l;
    int y,t;
    printf("please input y:\n");
    scanf("%d",&y);
    createlist(l);
    t=account(l,y);
    printf("y元素的个数为%d个",t);
}
搜索更多相关主题的帖子: void 元素 account include please 
2013-05-06 10:22
邓士林
Rank: 19Rank: 19Rank: 19Rank: 19Rank: 19Rank: 19
来 自:淮河河畔
等 级:贵宾
威 望:61
帖 子:2391
专家分:13384
注 册:2013-3-3
得分:10 
主要问题就是这个函数:
void createlist(lnode &l)
{

    printf("please input number you want:\n");
    for(int i=0;i<l.len;i++)
        scanf("%2d",&l.data[i]);
    for(int j=0;j<l.len;j++)
        printf("the number is:\n",l.data[j]);

}
其没有输入或指定线性表的长度l。len没有值,怎么进行循环呢?其二: printf("the number is:\n",l.data[j]);这个输出没有%d怎么能输出来呢?修改如下:
void createlist(lnode &l)
{

    printf("please input numbers you want:\n");
    scanf("%d",&l.len);
    for(int i=0;i<l.len;i++)
        scanf("%2d",&l.data[i]);
    for(int j=0;j<l.len;j++)
        printf("the number is:%d\n",l.data[j]);

}

Maybe
2013-05-06 14:11



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-406297-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.375850 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved