链表
想想你说过的话
这个作者很懒,什么都没留下…
展开
-
约瑟夫环 c实现
#include<stdio.h> #include<malloc.h> #include<stdlib.h>typedef struct ElemType{ int id; }ElemType;typedef struct LNode{ struct ElemType data; struct LNdoe *next; }LNode,*LinkList; /** 形成m个结原创 2018-03-29 19:12:35 · 307 阅读 · 0 评论 -
java LinkedList
package java.util; import java.util.function.Consumer; /** * Doubly-linked list implementation of the {@code List} and {@code Deque} * interfaces. Implements all optional list operations, and permit原创 2018-03-28 14:10:21 · 137 阅读 · 0 评论