博客相关
未读AnZhiYu主题中大部分标签移植于店长的hexo-butterfly-tag-plugins-plus,转载自安知鱼
段落文本p
标签语法配置参数样式预览示例代码{% p 样式参数(参数以空格划分), 文本内容 %}
字体: logo, code
颜色: 红色,黄色,绿色,青色,蓝色,灰色
大小: small, h4, h3, h2, h1, large, huge, ultra
对齐方向: left, center, right
彩色文字
在一段话中方便插入各种颜色的标签,包括:红色、黄色、绿色、青色、蓝色、灰色。
超大号文字
文档「开始」页面中的标题部分就是超大号文字。Volantis
A Wonderful Theme for Hexo
- 彩色文字 在一段话中方便插入各种颜色的标签,包括:{% p red, 红色 %}、{% p yellow, 黄色 %}、{% p green, 绿色 %}、{% p cyan, 青色 %}、{% p blue, 蓝色 % ...
hexo笔记
未读页面配置📦
🧱 Front-matter 的基本认识
Front-matter 是 markdown 文件最上方以 --- 分隔的区域,用于指定个别档案的变数。其中又分为两种 markdown 里
Page Front-matter 用于页面配置
Post Front-matter 用于文章页配置
TIP
如果标注可选的参数,可根据自己需要添加,不用全部都写在 markdown 里
Page Front-matter
写法
解释
title
【必需】页面标题
date
【必需】页面创建日期
type
【必需】标签、分类、关于、音乐馆、友情链接、相册、相册详情、朋友圈、即刻页面需要配置
updated
【可选】页面更新日期
description
【可选】页面描述
keywords
【可选】页面关键字
comments
【可选】显示页面评论模块(默认 true)
top_img
【可选】页面顶部图片
mathjax
【可选】显示 mathjax(当设置 mathjax 的 per_page: false 时,才需要配置,默认 fals ...
大学生涯
未读个人BG
学校:江苏某中下211
专业:数字媒体技术
专业排名(rk):13%
科研经历:一段国家级大创,产出一篇论文(在投,二作)
竞赛经历:几个水奖(特别水)
纠结的选择
文书准备
海投学校
厦门大学电影学院直博
湖南大学信科院软工专硕
哈工大卓工专硕
哈工大计算学部工程博
失败。。。。 回到卓工专硕了。。。
结语
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
Quick Start
Create a new post
$ hexo new "My New Post"
More info: Writing
Run server
$ hexo server
More info: Server
Generate static files
$ hexo generate
More info: Generating
Deploy to remote sites
$ hexo deploy
More info: Deployment
搜索与图论
DFS
深度优先搜索,一种执着的搜索方法,只有将一条路径走完才回去搜索其他路径。
递归或者栈实现
全排列
原题来源:【AcWing 842】排列数字
解题思路:使用数字去填补空位,直至空位被填完,说明找到一个可行答案
Code
#include<iostream>using namespace std;const int N = 7;int path[N+1];bool visited[N+1];int n;void dfs(int u){ if(u==n){ for (int i = 0; i <n; i ++ )printf("%d ",path[i]); puts(""); } for(int i=1;i<=n;i++){ if(!visited[i]){ visited[i]=true; path[u]=i; dfs( ...