main.c,负责测试
#define _CRT_SECURE_NO_WARNINGS 1
#include <stdio.h>
#include <stdlib.h>
#include "linklist.h"
int main ( )
{ LNode* list= NULL ; int i = 0 , err = 0 ; datatype a = 40 , return_value= 0 ; datatype arr[ ] = { 20 , 10 , 90 , 100 , 50 , 40 , 20 , 60 , 70 , 80 } ; list = create_list ( ) ; if ( list == NULL ) { fprintf ( stderr , "create_list()failed\n" ) ; return - 1 ; } for ( i = 0 ; i < sizeof ( arr) / sizeof ( * arr) ; i++ ) { list_order_insert ( list, & arr[ i] ) ; } list_display ( list) ; destroy_list ( list) ;
}
linklist.c 负责具体的代码实现
#include <stdio.h>
#include <stdlib.h>
#include "linklist.h"
LNode* create_list ( )
{ LNode* ps = NULL ; ps= ( LNode* ) malloc ( sizeof ( LNode) ) ; if ( ps == NULL ) { return - 1 ; } else { ps-> next = NULL ; return ps; } }
int list_insert_at ( LNode * ps, int i, datatype* data)
{ int j = 0 ; LNode* node = ps; LNode* newnode = NULL ; if ( i < 0 ) { return - 1 ; } while ( ( j < i) && ( node != NULL ) ) { node = node-> next; j++ ; } if ( node) { newnode = ( LNode* ) malloc ( sizeof ( LNode) ) ; if ( newnode == NULL ) { return - 2 ; } newnode-> data = * data; newnode-> next = node-> next; node-> next = newnode; return 0 ; } else { return - 3 ; } }
int list_order_insert ( LNode* ps, datatype * data)
{ LNode* prenode = ps, * curnode= ps-> next, * newnode; while ( ( curnode != NULL ) && ( curnode-> data < * data) ) { prenode = curnode; curnode = curnode-> next; } newnode = ( LNode* ) malloc ( sizeof ( LNode) ) ; if ( newnode == NULL ) { return - 1 ; } newnode-> data = * data; newnode-> next= prenode-> next; prenode-> next = newnode; return 0 ;
}
int list_display ( LNode* ps)
{ int i = 0 ; if ( list_isempty ( ps) ) { return - 1 ; } printf ( "链表中的元素依次为:\n" ) ; ps = ps-> next; while ( ps) { printf ( "下标:%d\t数据:%d\n" , i, ps-> data) ; ps = ps-> next; i++ ; } return 0 ;
} int delete_list_at ( LNode * ps, int i, datatype * data)
{ LNode * p = ps, * q= NULL ; int j = 0 ; if ( i < 0 ) { return - 1 ; } while ( ( p!= NULL ) && ( j < i) ) { p = p-> next; j++ ; } if ( p == NULL ) { return - 2 ; } else { q = p-> next; p-> next = q-> next; * data = q-> data; free ( q) ; q = NULL ; return 0 ; }
} int delete_list ( LNode * ps, datatype * data)
{ LNode * prenode = ps, * curnode = ps-> next; while ( ( curnode != NULL ) && ( curnode-> data != * data) ) { prenode = curnode; curnode = curnode-> next; } if ( curnode == NULL ) { return - 1 ; } else { prenode-> next = curnode-> next; free ( curnode) ; curnode = NULL ; return 0 ; }
} int list_isempty ( LNode* ps)
{ if ( ps-> next) { return 0 ; } else { return 1 ; }
} int destroy_list ( LNode* ps)
{ LNode* newnode, * node = ps-> next; while ( node) { newnode = node-> next; free ( node) ; node = NULL ; node = newnode; } free ( ps) ; ps = NULL ; return 0 ;
}
linklist.h(头文件,函数声明等)
#ifndef LINKLIST_H__
#define LINKLIST_H__
typedef int datatype;
typedef struct LNode
{ datatype data; struct LNode * next;
} LNode;
LNode* create_list ( ) ;
int list_order_insert ( LNode* ps, datatype * data) ;
int list_insert_at ( LNode * ps, int i, datatype* data) ;
int delete_list ( LNode * ps, datatype * data) ;
int delete_list_at ( LNode * ps, int i, datatype* data) ;
int list_display ( LNode* ps) ;
int list_isempty ( LNode* ps) ;
int destroy_list ( LNode* ps) ;
#endif