“陌上人如玉,公子世无双!”|

xxj112

园龄:2年10个月粉丝:11关注:18

04 2022 档案

封寝笔记
摘要:数组做参数,可以改变实参。相当于把地址给函数。 静态储存变量:只赋值一次。 ( static 类型名 变量 ) extern 动态函数 static静态函数
19
0
0
kmp
摘要:KMP算法分两步 一:求子字符串(p)的next数组 void getnext(int nextt[],string p) { nextt[0]=-1; for (int i=1;i<p.size();i++) { int j=nextt[i-1]; while ((p[j+1]!=p[i])&&(
35
0
0
动态链表
摘要:主要函数 1: malloc:函数原型 void *malloc(unsigned int size); 分配一个长度为size的连续空间,返回首地址。 空间不足时返回HULL; 2: calloc:函数原型 void *calloc(unsigned n,unsigned size) 分配n个长度
35
0
0
链表结构理解
摘要:#include <stdio.h> #include <malloc.h> struct node { int date; struct node *next; }; int main() { struct node a,b,c,*head,*p; a.date=1; b.date=2; c.da
18
0
0
逆序对
摘要:#include<iostream> #include<map> #include<queue> using namespace std; typedef long long ll; const int N=10000; int e[N]; int tmp[N]; ll merge_sort(int
27
0
0
map迭代器
摘要:#include<iostream>#include<map>#include<queue>using namespace std;queue<int> qu;map<int, int> mp;int sss(int a){for(auto it=mp.begin();it!=mp.end();it
119
0
0
快速排序map
摘要:map大数据时会超时 map有自动排序(降序:按first)和查重功能。 #include<iostream> #include<map> using namespace std; map<int, int> mp; void sss() { for(auto it=mp.begin();it!=m
38
0
0
向量与空间的解析几何
摘要:空间直角坐标系Oxyz:卦限 、坐标面xOy 、横、纵、竖坐标; 向量: 自由向量 、逆向量 、零向量 、方向角 、方向余弦 、 a*b:数量积 、向量积不同;平面向量的向量积垂直于平面(遵循右手法则); |c|=|a||b|sinθ; 三角形面积=|ab*ac|/2; 平面的点法式方程; 一般式方
169
0
0
归并排序
摘要:1 #include<stdio.h> 2 #include<iostream> 3 using namespace std; 4 int map[100]; 5 void merge_sort(int q[],int l,int r) 6 { 7 if(l>=r) 8 return; 9 int
13
0
0
spaf
摘要:#include<bits/stdc++.h> using namespace std;typedef long long ll;#define INF 0x3f3f3f3fconst ll N=610000;ll vis[21900]; //相当于bool函数ll dis[21900],u[N],
48
0
0
二叉树的构建
摘要:#include<iostream>#include<set>#include<algorithm>using namespace std;int tree[100];int create(int _tree[],int _node[],int len){ int i,max=1; _tree[1]
34
0
0
迭代器遍历 and auto遍历
摘要:迭代器 map<string,int>::iterator it; for(it=mp.begin();it!=mp.end();it++) { cout<<it->first<<" "<<it->second<<endl; } auto for(auto l:mp) { cout<<l.first
82
0
0
new start
摘要:Hello World!
38
0
0
深色
回顶
收起
  1. 1 椿 沈以诚
椿 - 沈以诚
00:00 / 00:00
An audio error has occurred.

作词 : 沈以诚

作曲 : 沈以诚

恍惚间 浸透了回忆

漫漫的回忆 存在的回忆

只看见 遗忘的笑脸

纯洁的笑脸不在身边

想实现 从前的诺言

不轻的诺言 和你的诺言

却描绘 无期限的诗

由寓意的诗刻画的线

乔木落叶 告诉我时间变迁

你仍旧倚靠石头看岁岁年年

惊觉两鬓霜白长叹一声哀怨

也不过匆匆弹指间

不在意我存在你心里面

只记得当时没有那么远

一眼朝如青丝暮成雪

美梦惊你不在眼前

我想给你一颗我的眼

倒映着曾拾起的缘

若皆是一场镜花水月

也不想忘记你的颜

唯一心愿

恍惚间 浸透了回忆

恍惚间 浸透了回忆

漫漫的回忆 存在的回忆

只看见 遗忘的笑脸

纯洁的笑脸不在身边

想实现 从前的诺言

不轻的诺言 和你的诺言

却描绘 无期限的诗

由寓意的诗刻画的线

乔木落叶 告诉我时间变迁

你仍旧倚靠石头看岁岁年年

惊觉两鬓霜白长叹一声哀怨

也不过匆匆弹指间

不在意我存在你心里面

只记得当时没有那么远

一眼朝如青丝暮成雪

美梦惊你不在眼前

我想给你一颗我的眼

倒映着曾拾起的缘

若皆是一场镜花水月

也不想忘记你的颜

唯一心愿

点击右上角即可分享
微信分享提示