码迷,mamicode.com
首页 > 其他好文 > 详细

数据结构_线性表_链表实现

时间:2017-04-07 23:32:51      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:str   ini   font   div   ==   clu   1.2   color   指针   

 

之前已经完全忘了指针怎么用了。复习了一下,目前只写了一点点。

#include<iostream>
#include<cstdio>
#include<malloc.h>
using namespace std;

struct Node
{
    int e;
    double c;
    Node* next;
};

struct Head
{
    int cnt;
    Node* elem;
};

Head* inilHead()
{
    Head *head;
    head=(Head*)malloc(sizeof(Head));
    head->cnt=0;
    head->elem=NULL;
    return head;
}

void insert(Head *head,double c,int e)
{
    Node *pos=head->elem;
    while(pos!=NULL)
    {
        if(pos->e==e)
            break;
        pos=pos->next;
    }
    if(pos==NULL)
    {
        Node *node=(Node*)malloc(sizeof(Node));
        node->c=c;
        node->e=e;
        node->next=head->elem;
        head->elem=node;
    }
    else 
        pos->c+=c;
}

void add(int &a,int &b)
{
    b=a+b;
}
int main()
{
    Head *head;
    head=inilHead();
    insert(head,1,1);
    insert(head,1.2,1);
    Node *pos=head->elem;
    /*while(pos!=NULL)
    {
        cout<<pos->c<<‘ ‘<<pos->e<<endl;
        pos=pos->next;
    }*/
    
}

 

数据结构_线性表_链表实现

标签:str   ini   font   div   ==   clu   1.2   color   指针   

原文地址:http://www.cnblogs.com/jasonlixuetao/p/6680173.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!