一、引言
1、什么是SQLite
SQLite的起源可以追溯到2000年,由D. Richard Hipp(理查德希普)所创建。作为一个独立的开发者,Hipp在寻找一个能够在嵌入式系统中使用的轻量级数据库时,发现现有的解决方案要么过于庞大&…
https://www.luogu.org/problemnew/show/P3809 分析 SA模板(找个时间把SA学习笔记写了) #include <iostream>
#include <cstdio>
#include <cstring>
using namespace std;
const int N1e610;
int n,m;
int c[N],x[N],y[N],sa[N],rk[N…
题目
#include<cstdio>
#include<iostream>
#include<cstring>
#define m(a,b) memset(a,b,sizeof a)
using namespace std;
typedef long long ll;
const int N1e65;
char s[N];
int x[N],y[N],c[N],sa[N],rk[N],h[N];
int n,m;
void get_sa()
{for(int i…
文章目录 R e s u l t Result Result H y p e r l i n k Hyperlink Hyperlink D e s c r i p t i o n Description Description S o l u t i o n Solution Solution C o d e Code Code R e s u l t Result Result H y p e r l i n k Hyperlink Hyperlink
https://www.luogu.co…
将一个给定字符串根据给定的行数,以从上往下、从左到右进行 Z 字形排列。 比如输入字符串为 "LEETCODEISHIRING" 行数为 3 时,排列如下: L C I R E T O E S I I G E D H N 之后,你的输出需要从左往右逐行读…