码迷,mamicode.com
首页 > 编程语言 > 详细

C语言结构体和联合体

时间:2014-10-30 18:31:40      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   color   sp   div   log   bs   ef   

1、单链表插入

#include <stdio.h>
#include <stdlib.h>

#define FALSE 0
#define TRUE 1
typedef struct NODE{
    STRUCT NODE *link;
    int value;
}Node;

int sll_insert(Node *current,int newvalue)
{
    Node *previous;
    Node *new;
    
    while(current->value<newvalue){
        previous =current;
        current =current->link;            
    }
    new =(Node *)malloc(sizeof(Node));
    if( new == NULL)
    return FALSE;
    
    new->value=newvalue;        
    new->link = current;
    previous ->link=new;
    return TRUE;
    
}

int main()
{
    int result;
    result=sll_insert(root,12);
    
    return 0;
}
待测--未调通

 

C语言结构体和联合体

标签:style   blog   io   color   sp   div   log   bs   ef   

原文地址:http://www.cnblogs.com/bluewelkin/p/4063094.html

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