//// main.c// dynamic_link_list//// Created by ma c on 15/8/5.// Copyright (c) 2015年 bjsxt. All rights reserved.// 要求:写一个函数建立有3名学生数据的动态单向链表,并输出链表中每个结点...
分类:
编程语言 时间:
2015-08-05 21:52:18
阅读次数:
606
可能有很多种实现方式,分享一下最朴实的方法。首先是节点和Link List结构:struct mynode { int value; mynode * next; };struct mylist { mynode * first; mynode * last; };提供一些基础函数:void lis...
分类:
编程语言 时间:
2015-08-04 12:48:53
阅读次数:
177
#include<stdio.h>#include<stdlib.h>typedefintStatus;typedefintElemtype;typedefstructLNode{ Elemtypedata; structLNode*next;}*LinkList;StatusInitList(LinkList&L){ L=(LinkList)malloc(sizeof(LNode)); L->next=NULL; return1;}StatusDestoryList(L..
分类:
编程语言 时间:
2015-06-10 15:57:02
阅读次数:
132
废话不多说,直接看代码#include #include #define ElemType inttypedef struct node{ ElemType data; struct node *next;}node,*link;void display(link list);//使用头插法lin....
分类:
其他好文 时间:
2015-06-10 01:07:23
阅读次数:
206
1 //code by zzlpp && code for link_list training2 typedef struct Node3 {4 int value;5 struct Node *link;6 }Node;7 8 //头文件只包含节点的声明 文 1 #include...
分类:
其他好文 时间:
2015-06-06 23:31:53
阅读次数:
237
http://www.hanselman.com/blog/ListOfNETDependencyInjectionContainersIOC.aspxI'm trying to expand my mind around dependency injection in .NET (beyond t...
分类:
Web程序 时间:
2015-03-18 22:58:34
阅读次数:
207
一、 Linux内核链表为双向循环链表,和数据结构中所学链表类似,具体不再细讲。由于在内核中所实现的函数十分经典,所以移植出来方便后期应用程序中的使用。/*********************************** 文件名:kernel link list of linux.h作者:Bu....
分类:
系统相关 时间:
2015-02-16 18:15:54
阅读次数:
369
Problem 1 : Is it a loop ? (判断链表是否有环?)Assume that wehave a head pointer to a link-list. Also assumethat we know the list is single-linked. Can you com...
分类:
编程语言 时间:
2015-01-30 20:53:04
阅读次数:
307
Is a loop ? Question descrip as follows :
Assume that wehave a head pointer to a link-list. Also assumethat we know the list is single-linked. Can you come up an algorithm to checkwhether this link list includes a loop by using O(n) time and O(1) ...
分类:
其他好文 时间:
2015-01-22 13:28:16
阅读次数:
229
http://www.geeksforgeeks.org/amazon-interview-set-108-campus/F2F-1:1) Given a sorted circular link list and a pointer to random node, now insert a new...
分类:
其他好文 时间:
2014-08-08 04:18:25
阅读次数:
248