自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(3)
  • 资源 (3)
  • 收藏
  • 关注

原创 单链表的各种操作

本文包含以下内容: 0.单链表的结点struct设置及头结点的建立 1.前插法创建单链表 2.尾插法创建单链表 3.前插新结点 4.尾插新结点 5.遍历单链表 6.删除第 i 个结点 7.取第 i 个结点数据域的值 8.查找ElemType e 所在的结点,并返回该结点的地址值 9.源代码 0.单链表的结点struct设置及头结点的建立 初始化(建立单链表的第一个结点),最好在main里面进行,若单独用一个函数进行初始化,分配到的内存在函数结束一段时间以后会被自动收回。头结点可以.

2020-08-03 18:09:26 327

原创 C++实现井字棋

源码: #include <windows.h> #include <iostream> #include <string> using namespace std; enum players{Computer,Human,Draw,None }; const int iWin[8][3]={{0,1,2}, {3,4,5},{6,7,8},{0,3,6},{1,4,7},{2,5,8},{0,4,8},{2,4,6}}; class qz { pub.

2020-08-03 17:19:32 1738 1

原创 C语言实现单链表的前后插

#include&lt;stdio.h&gt;#include&lt;stdlib.h&gt;typedef struct List{ int data;    //数据域 struct List *next;         //指针域} List;void HeadCreatList(List *L) //前插法建立链表{ List *s;                //不用像后插法...

2018-04-03 19:26:04 4996

3GPP TS 27.007最新版本AT指令文档

2022年3月份最新版本,涵盖拨号驻网、CSFB/VOLTE语音相关的AT。 The contents of the present document are subject to continuing work within the TSG and may change following formal TSG approval. Should the TSG modify the contents of the present document, it will be re-released by the TSG with an identifying change of release date and an increase in version number as follows:Version x.y.zThe terms GSM and GSM/UMTS are used whenever appropriate for SIM/UICC GSM applications or GSM/UMTS bearer services or to represent specif

2022-05-31

WinTop窗口置顶工具

CV工程师、Ctrl+c Ctrl+v 工程师

2020-12-18

C语言O(1)空间复杂度实现单链表反转

用C语言O(1)空间复杂度实现单链表反转,C语言数据结构的作业,有需要的尽管拿去用吧,赚点小分,无聊腻了

2018-04-03

空空如也

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

TA关注的人

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