
笔记
ProgramBoy001
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
C语言双向链表
**C语言双向链表的实现**#include<stdio.h>#include<stdlib.h>#include<malloc.h>void link(int number);void search();struct Node{ int age; struct Node *next; struct Node *perv;};struct Node *head=NULL;struct Node *tail=NULL;int原创 2020-11-01 20:12:43 · 160 阅读 · 0 评论 -
单链表代码案例
单链表代码案例public class useData <T>{ //单链表的数据机构 static class Node<T>{ T element; Node next; public Node(T element){ this.element=element; } } //头指针 Node head; //为指针 Node tail;原创 2020-08-30 20:10:02 · 175 阅读 · 0 评论 -
linux 20.04
原创 2020-08-24 01:58:53 · 242 阅读 · 0 评论