参考文章: http://www.latelee.org/using-gnu-linux/ubuntu-apache-gitweb.html http://blog.csdn.net/caspiansea/article/details/41952139 http://tom-cjp.iteye.c
分类:
Web程序 时间:
2016-02-08 21:20:36
阅读次数:
285
这道题的意思是到现在理解的不太透彻, 以后需要在看, 先把代码贴上吧 /* ID: m1500293 LANG: C++ PROG: charrec */ #include <cstdio> #include <cstring> #include <algorithm> using namespac
分类:
其他好文 时间:
2016-02-08 21:12:53
阅读次数:
230
Caffe官网:http://caffe.berkeleyvision.org/ 初始化网络 1 #include "caffe/caffe.hpp" 2 #include <string> 3 #include <vector> 4 using namespace caffe; 5 6 char
分类:
其他好文 时间:
2016-02-08 17:29:00
阅读次数:
589
简单地说,函数对象就是一个重载了()运算符的类实例,它可以像一个函数一样使用。 #include <iostream> using namespace std; class Add { public: int operator ()(const int &a, const int &b) { ret
分类:
其他好文 时间:
2016-02-08 17:26:37
阅读次数:
299
这次CF状态之悲剧,比赛就别提了。后来应该好好总结。 A题:某个细节没考虑到,导致T了 代码: #include<cstdio> #include<cstring> #include<iostream> #include<algorithm> #include<vector> using names
分类:
其他好文 时间:
2016-02-07 21:18:30
阅读次数:
306
好久没有写过KMP了,今天写个KMP练练手。此题就是枚举左端点暴力,用KMP做到O(n^2) 1 #include<cstdio> 2 #include<cstring> 3 using namespace std ; 4 5 const int MAXL = 15000 + 20 ; 6 7 ch
分类:
其他好文 时间:
2016-02-07 17:32:00
阅读次数:
243
【HDU2222】 最纯粹的裸题,错误点详见注释。 1 #include<iostream> 2 #include<cstdio> 3 #include<cstring> 4 #include<algorithm> 5 #include<queue> 6 using namespace std; 7
分类:
其他好文 时间:
2016-02-07 13:36:30
阅读次数:
260
上一篇是使用Material Design 创建App翻译系列—-開始学习篇,进入正题: 新的材料主题提供了下面内容: 1. 提供了同意设置颜色板的系统部件组件。 2. 为这些系统组件提供了触摸反馈动画。 3. Activity的过渡动画。 依据你的品牌标识,使用你所控制的颜色板能够自己定义材料主题
分类:
移动开发 时间:
2016-02-06 22:23:12
阅读次数:
273
using System; using System.Collections.Generic; using System.Data; using System.Linq; using System.Text; using System.Reflection; namespace Extension
分类:
其他好文 时间:
2016-02-06 22:22:27
阅读次数:
268