排序
C语言基础#ifndef的用法
#ifndef起到的效果是防止一个源文件两次包含同一个头文件。 编译时,这两个C文件要一同编译成一个可运行文件,于是问题来了,大量的声明冲突。 一般格式是这样的: #ifndef <标识> #defin...
Linux man 手册 分类与结构man 1 man 2 man 3 man N
man手册分类 序号 英文 中文 1 Executable programs or shell commands 可执行程序或shell命令 2 System calls (functions provided by the kernel) 系统调用 3 Library calls (functions wit...
[树莓派] 在树莓派上手动安装并搭建 Elasticsearch 搜索引擎集群
在树莓派上跑了很多的服务,有不少是需要用到搜索功能的,如果仅仅是使用 MySQL 数据库自带的 LIKE 语句来搜索,还是太弱了。 所以折腾了好几次,准备在树莓派上跑一个 Elasticsearch 全文搜索...
算法与数据结构:数组&链表 理论和面试题
数组Array 数组在内存中的简单示例: 插入和删除操作 访问时间复杂度为O(1) 插入和删除时间复杂度最差为O(n),最好为O(1),平均为O(n/2) 顺序存储的优缺点 顺序存储时,相邻数据元素的...
Ubuntu20.04LTS实时显示CPU、内存、网速占用率等ndicator-sysmonitor
Installation - App Indicator based desktops: On Ubuntu and derivatives - manual installation sudo apt-get install python3-psutil curl git gir1.2-appindicator3-0.1 git clone https:/...
PeopleSoft 9.2 – PeopleTools 8.58 VirtualBox Installation(索引)Step By Step Guide
搬运备用 原文博客https://mani2web.wordpress.com/ Hello everyone! Hope everyone is doing good and staying safe! Four years ago, I had shared a step-by-step guide for instal...
PeopleSoft 9.2 – PeopleTools 8.58 VirtualBox Installation(一)Getting Started
Here‘s the link to the main post. This post assumes that you have a Windows based host. I had completed the installation on Windows 10 running on a Lenovo laptop with a dual-core ...
详解三次握手和四次挥手:遇到心动的女孩时,如何去把握?
我有一个朋友,小泷,他与我倾诉: 他在咖啡厅与朋友闲谈,遇到了一个让时间彷佛静止的女孩。他描述,那一刻,他的心彻底被抓住了,脑中轰然,眼睛无法再从她身上移开。 而女孩,也时不时向她望...
干货!上古神器 sed 教程详解,小白也能看的懂
目录: 介绍工作原理正则表达式基本语法数字定址和正则定址基本子命令实战练习 介绍 熟悉 Linux 的同学一定知道大名鼎鼎的 Linux 三剑客,它们是grep、awk、sed,我们今天要聊的主角就是 sed。 ...
记录一次SpringBoot整合Swagger
虽然不是第一次使用Swagger了,但是一直没有写过相关的文章,时间长了容易忘记,记录备用吧。 Swagger 是一个规范和完整的框架,用于生成、描述、调用和可视化 RESTful 风格的 Web 服务。 总体...