摘要:
#include<stdio.h> #include<stdlib.h> #define MAX_SIZE 101 #define SWAP(x, y, t)((t) = (x), (x) = (y), (y) = t) #define COMPARE(x, y)((x) < (y)) ? -1 : 阅读全文
摘要:
#ifndef __LINKQUEUE_H__ #define __LINKQUEUE_H__ #define TRUE 1 #define FALSE 0 #define OK 1 #define ERROR 0 #define INFEASIBLF -1 #define OVERFLOW -2 阅读全文
摘要:
栈stack - 是限定在表尾进行插入或删除的线性表 #ifndef __STACK_H__ #define __STACK_H__ #define TRUE 1 #define FALSE 0 #define OK 1 #define ERROR 0 #define INFEASIBLF -1 # 阅读全文
摘要:
1. 头结点表示链表中第一个结点的存储位置 2. 最后一个结点的存储位置为空(NULL); #ifndef __LINKLLIST_H__ #define __LINKLLIST_H__ #define TRUE 1 #define FALSE 0 #define OK 1 #define ERRO 阅读全文
摘要:
#ifndef __SQLLIST_H__ #define __SQLLIST_H__ #define TRUE 1 #define FALSE 0 #define OK 1 #define ERROR 0 #define INFEASIBLF -1 #define OVERFLOW -2 #def 阅读全文
摘要:
#include <stdio.h> #include<stdlib.h> #define TRUE 1 #define FALSE 0 #define OK 1 #define ERROR 0 #define INFEASIBLF -1 #define OVERFLOW -2 typedef in 阅读全文
摘要:
引入guava包 阅读全文
摘要:
一、简介 Compose是用于定义和运行多容器Docker应用程序的工具。 使用compose,可以使用yaml文件配置应用程序的服务。 然后,通过一个命令,可以从配置中创建和启动所有服务。 二、使用 使用compose基本上是一个三步过程: 1. 用dockerfile,或者镜像定义应用程序的环境 阅读全文
摘要:
BioServer - client 阅读全文
摘要:
一、插入命令 命令 作用 a 在光标后附加文本 A 在本文行末附加文本 i 在光标前附加文本 I 在本行开始附加文本 o 在光标下方插入新行 O 在光标上方插入新行 二、定位命令 命令 作用 h 左移一个字符 j 下移一行 k 上移一行 l 右移一个字符 $ 移到行首 0 移到行尾 命令 作用 H 阅读全文