标题:我搞不懂抽象数据类型。希望哪位大神讲了下思路。
只看楼主
离大神差几步
Rank: 1
等 级:新手上路
帖 子:6
专家分:0
注 册:2019-4-29
结帖率:100%
 问题点数:0 回复次数:0 
我搞不懂抽象数据类型。希望哪位大神讲了下思路。
看书也有点搞不懂。希望。我希望比较厉害的大神们举个例子,举个例子代码,然后讲思路。比如下面串代码
* films3.c -- 使用抽象数据类型(ADT)风格的链表 */
/* 与list.c一起编译                        */
#include <stdio.h>
#include <stdlib.h>    /* 提供exit()的原型 */
#include "list.h"      /* 定义List、Item   */
void showmovies(Item item);
char * s_gets(char * st, int n);
int main(void)
{
    List movies;
    Item temp;

    /* 初始化       */
    InitializeList(&movies);
    if (ListIsFull(&movies))
    {
   fprintf(stderr, "No memory available! Bye!\n");
        exit(1);
    }

    /* 获取用户输入并储存 */
    puts("Enter first movie title:");
    while (s_gets(temp.title, TSIZE) != NULL && temp.title[0] != '\0')
    {
        puts("Enter your rating <0-10>:");
        scanf("%d", &temp.rating);
        while (getchar() != '\n')
            continue;
        if (AddItem(temp, &movies) == false)
        {
            fprintf(stderr, "Problem allocating memory\n");
            break;
        }
   fprintf(stderr, "No memory available! Bye!\n");
        exit(1);
    }

    /* 获取用户输入并储存 */
    puts("Enter first movie title:");
    while (s_gets(temp.title, TSIZE) != NULL && temp.title[0] != '\0')
    {
        puts("Enter your rating <0-10>:");
        scanf("%d", &temp.rating);
        while (getchar() != '\n')
            continue;
        if (AddItem(temp, &movies) == false)
        {
            fprintf(stderr, "Problem allocating memory\n");
            break;
        }
略一百行代码.我也特别想知道怎么实现接口,使用接口的写代码流程
搜索更多相关主题的帖子: 数据类型 temp fprintf memory title 
2019-05-05 12:04



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




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

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