数据结构
jim-xu
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
C语言 链表相关 操作
今天对单链表的相关操作做了学习,掌握了链表操作的基本知识,做一个记录:// 链表操作.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"//预编译头 没关系#include#include#includetypedef struct node{int element;struct node * next;}Node;Node *原创 2016-05-31 21:10:18 · 376 阅读 · 0 评论 -
链表相关的操作整理(二)
/*开始时间: 2016-07-12 10:18:37实现功能:*/#include#include#include#includeusing namespace std;typedef struct nodelist{ int value; struct nodelist *next;}Node;int ListTotal=0;Node * CreatLi原创 2016-07-12 14:33:02 · 309 阅读 · 0 评论
分享