过滤器(Filters) filters来改变变量最终显示的值。 过滤器就像这样{{ name|lower }}。这是将name变量通过lower过滤器全部转换为小写字母。|用来调用过滤器。 过滤器可以是链式的,一个过滤器的输出会被用在下一个。{{ text|escape|linebreaks }} ...
分类:
编程语言 时间:
2019-07-20 18:42:06
阅读次数:
153
总结下图里面的常用模板: 1、邻接矩阵版 2、邻接表版 ...
分类:
其他好文 时间:
2019-02-22 00:56:43
阅读次数:
187
图论常用模板: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 图的建立 1.邻接矩阵建图。 无向图: 有向图: 2.链式前向星建图: 无向图: 有向图 ~~~~~~~~~~~~~~ ...
分类:
其他好文 时间:
2018-11-08 18:27:21
阅读次数:
221
一些普及组会用到的DFS模板,其他的DFS我感觉普及组不会用到所以暂且搁着,等之后有时间了再细写w ...
分类:
其他好文 时间:
2018-10-01 21:36:57
阅读次数:
158
为了提高开发效率,通常将一些常用模板添加到快捷键,方法: window-prefrerences-java-editor-templates 代码复制进去apply应用即可 ...
分类:
编程语言 时间:
2018-09-06 02:29:09
阅读次数:
165
freemarker freemarker 官网:https://freemarker.apache.org/ freemarker starter: note: 1、可以使用freemarker的starer来构建web MVC应用 2、spring MVC支持使用freemarker 3、Fre ...
分类:
编程语言 时间:
2018-09-02 17:17:25
阅读次数:
331
原文:WPF App.xaml.cs常用模板,包括:异常捕获,App只能启动一次App.xaml.cs中的代码每次都差不多,故特地将其整理出来直接复用: 5 using System; 6 using System.Configuration; 7 using System.Diagnostics;... ...
分类:
移动开发 时间:
2018-08-31 13:15:32
阅读次数:
210
#include<stdio.h> #include<string.h> #include<algorithm> #define N 100010 using namespace std; typedef long long LL; int a[N]; //原数组 int sorted[N]; // ...
分类:
其他好文 时间:
2018-07-23 14:54:27
阅读次数:
133