自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 Spring Security

Spring Security

2023-03-14 11:40:15 115

原创 Spring属性配置

Spring属性配置

2023-03-14 11:38:59 296

原创 消费REST

消费REST

2023-03-14 11:38:16 84

原创 Junit

JUnit 是Java生态系统中最受欢迎的单元测试框架之一。

2023-03-14 11:36:18 118

原创 Test in SpringBoot

在Spring Boot中进行测试

2023-03-14 11:20:39 56

原创 SpringBoot的测试

# 启用Spring Security保护Spring应用的第一步就是将Spring Boot security starter依赖添加到构建文件中。        <dependency>             <groupId&gt

2022-11-03 17:30:49 348

原创 创建REST服务

创建REST服务

2022-08-02 21:46:26 333

原创 Spring data基础知识

Spring data基础知识

2022-07-27 17:48:07 133

原创 构建Web应用

构建Web应用基础知识

2022-07-26 19:40:19 122

原创 Spring应用

Spring基础认识

2022-07-26 19:36:14 311

原创 队列的链式存储结构与操作方法

#ifndef QUEUE_H_INCLUDED#define QUEUE_H_INCLUDEDtypedef int ElemType;typedef struct SingleNode{ ElemType data; //值域 struct SingleNode* next;//链接指针域}Node;typedef struct linkQueue{ Node* front; Node* rear;}Queue;/*************************

2021-04-02 18:33:43 81

原创 队列的顺序存储结构和操作实现

#ifndef QUEUE_H_INCLUDED#define QUEUE_H_INCLUDEDtypedef int ElemType;typedef struct SequQueue{ ElemType *queue; int front, rear; int MaxSize;}Queue;//队列 front指向的为空,即Q->queue[Q->fornt+1]才为队首元素,以便判别队列是否满与空/************************************

2021-03-31 22:35:58 132

原创 栈的链式存储和操作实现

#ifndef STACK_H_INCLUDED#define STACK_H_INCLUDEDtypedef int ElemType;typedef struct SingleNode{ ElemType data; struct SingleNode* next;}Stack;#endif #include <stdio.h>#include <stdlib.h>#include "Stack.h"/*************************

2021-03-27 18:43:11 109

原创 栈的顺序存储结构和操作实现

头文件Stack.h#ifndef STACK_H_INCLUDED#define STACK_H_INCLUDEDtypedef int ElemType;typedef struct SequStack{ ElemType* stack; int top; int MaxSize;}Stack;#endif栈在顺序存储下运算的算法.c`#include <stdio.h>#include <stdlib.h>#include "Stack.h"

2021-03-23 22:30:08 377

原创 线性表的链接存储结构和操作实现

参考数据结构(c语言描述)徐孝凯著头文件List.h#ifndef LIST_H_INCLUDED#define LIST_H_INCLUDEDtypedef int ElemType;typedef struct SingleNode{ ElemType data; struct SingleNode* next;}List;#endif 线性表在链接存储下运算的算法.c#include <stdio.h>#include <stdlib.h>#in

2021-03-23 10:01:09 220

原创 线性表的顺序存储结构和操作实现

自定义头文件头文件名:List.h#ifndef LIST_H_INCLUDED#define LIST_H_INCLUDEDtypedef int ElemType;typedef struct SequList //定义顺序储存线性表的结构类型 { ElemType* list; //只想动态数组空间的指针 int len; //保存线性表的当前长度 int MaxSize; //保存List数组的长度 }List; #endif.

2021-03-21 21:44:54 445

空空如也

空空如也

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

TA关注的人

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