自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 循环队列(线性队列)模拟(方式1)-数据结构

# include <stdio.h> # include <malloc.h> # include <stdlib.h> const int DEFAULT_LEN = 12;//队列长度必须>=2; typedef struct Queue { int * pbase; int * front; int * rear; }QUEUE,*PQUEUE; void init(PQUEUE);//初始化一个队列 int * get_next_rear(PQ.

2021-08-28 18:12:06 77

原创 栈模拟 数据结构 C语言

# include <stdio.h> # include <malloc.h> # include <stdlib.h> typedef struct Node//节点 { int data; struct Node * pnext; }NODE,* PNODE; typedef struct Stack//栈 { PNODE ptop; PNODE pbottom; }STACK,* PSTACK; bool init(PSTAC...

2021-08-26 16:34:20 115

原创 数据结构-C语言链表模拟

# include <stdio.h> # include <malloc.h> # include <stdlib.h> //线性链表模拟 /* 只是单纯的模拟练习一下,没有检查健壮性,这可能是一个漏洞百出的程序。 */ typedef struct Node { int data; struct Node * pNode; }NODE,* PNODE; PNODE create_list(int/*链表的长度,链表的值默认为0*/);//创...

2021-08-25 14:00:50 96

原创 spring+cxf发布服务报错Error creating bean with name 'org.apache.cxf.jaxws.spring.NamespaceHandler$SpringSe

org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.apache.cxf.jaxws.spring.NamespaceHandler$SpringServerFactoryBean--1061879593': Invocation of init method fai

2017-08-01 13:54:43 5207 4

空空如也

空空如也

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

TA关注的人

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