自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(5)
  • 收藏
  • 关注

原创 链表的基本操作 增删改查 有序链表的并集差集

2018/11/17 21:41链表的基本操作 增删改查 有序链表的并集差集#include<iostream>using namespace std;typedef struct LNode{ int data; struct LNode *next;}LNode,*Head;void Init_List(LNode *L) //...

2018-11-17 21:43:00 260

原创 数据结构实验一:改

改进后的线性表#include <iostream>#include<stdlib.h>using namespace std;typedef struct { int L[100]; int length; } SList; void InitList_Sq(SList*,int ); //初始化线性表 void Out_Sq(SList...

2018-11-04 14:50:00 113

转载 List-链表的增删改查

转载数据结构郝斌链表# include <stdio.h># include <malloc.h># include <stdlib.h>typedef struct Node{ int data; //数据域 struct Node * pNext; //指针域}NODE, *PNODE; //NODE等价于struct Node PN...

2018-11-04 14:47:39 140

翻译 链式二叉树

链式二叉树2018/11/4 周日 小雨# include <stdio.h># include <malloc.h>struct BTNode{ char data; struct BTNode * pLchild; //p是指针 L是左 child是孩子 struct BTNode * pRchild;};void PostTraverseBT...

2018-11-04 14:45:14 83

原创 数据结构实验一:线性表的基本操作

// 186658-S181-李双源.cpp : 定义控制台应用程序的入口点。//时间 2018-10-27//内容:线性表的基本操作 #include "stdafx.h"#include <iostream>#include<stdlib.h>using namespace std;typedef struct { int L[100]; i...

2018-10-27 15:34:27 303

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除