Ha593 2022-05-19 22:42 采纳率: 95.2%
浏览 23
已结题

C++的结构体struct和自定义函数的调用

怎样在main函数中调用Initlist(),并传入函数执行后的值?怎样输出Listsize(),Listlength()和Listhead()的返回值?

#include <stdio.h>
#include

using namespace std;
#define Size 8 //顺序表的容量大小

struct table {
int size; //顺序表的容量大小(形参)
int length;//顺序表的有效长度,及数组中的元素个数
int* head;//动态数组
};

void Initlist()
{
table t;
t.length = 0;
t.size=Size;
t.head = new int[t.size];

int i;
int n;
cout<<"输入"<<n<<"的值";
cin>>n;
for (i = 0; i < n; i++)
{
cout << endl<<"输入第" << i + 1 << "个数据:";
cin >> t.head[i];
t.length++;
}
};

int Listsize(table t) //求顺序表的容量大小
{
return t.size;
}

int Listlength(table t)//求顺序表中数组的元素个数
{
return t.length;
}

int Listhead(table t)//求顺序表中数组的各元素
{
int i;
int n=0;
for (i = 0; i < n; i++)
return t.head[i];
}

int main()
{
Listsize();
Listlength();
Listhead();
return 0;
}

  • 写回答

1条回答 默认 最新

  • 吕布辕门 后端领域新星创作者 2022-05-19 23:03
    关注
    
    int main()
    {
        table t;
        Initlist();
        Listhead(t);
        int s=Listlength(t);
        return 0;
        
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

问题事件

  • 系统已结题 5月28日
  • 已采纳回答 5月20日
  • 创建了问题 5月19日

悬赏问题

  • ¥100 需要跳转番茄畅听app的adb命令
  • ¥50 寻找一位有逆向游戏盾sdk 应用程序经验的技术
  • ¥15 请问有用MZmine处理 “Waters SYNAPT G2-Si QTOF质谱仪在MSE模式下采集的非靶向数据” 的分析教程吗
  • ¥50 opencv4nodejs 如何安装
  • ¥15 adb push异常 adb: error: 1409-byte write failed: Invalid argument
  • ¥15 nginx反向代理获取ip,java获取真实ip
  • ¥15 eda:门禁系统设计
  • ¥50 如何使用js去调用vscode-js-debugger的方法去调试网页
  • ¥15 376.1电表主站通信协议下发指令全被否认问题
  • ¥15 物体双站RCS和其组成阵列后的双站RCS关系验证