码迷,mamicode.com
首页 >  
搜索关键字:using    ( 53562个结果
笔记三、apache搭建gitweb【转】
参考文章: 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
USACO 5.4.2 以后在理解
这道题的意思是到现在理解的不太透彻, 以后需要在看, 先把代码贴上吧 /* ID: m1500293 LANG: C++ PROG: charrec */ #include <cstdio> #include <cstring> #include <algorithm> using namespac
分类:其他好文   时间:2016-02-08 21:12:53    阅读次数:230
Caffe使用教程
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
函数对象(仿函数 functor)
简单地说,函数对象就是一个重载了()运算符的类实例,它可以像一个函数一样使用。 #include <iostream> using namespace std; class Add { public: int operator ()(const int &a, const int &b) { ret
分类:其他好文   时间:2016-02-08 17:26:37    阅读次数:299
Codeforces Round #256 (Div. 2)总结
这次CF状态之悲剧,比赛就别提了。后来应该好好总结。 A题:某个细节没考虑到,导致T了 代码: #include<cstdio> #include<cstring> #include<iostream> #include<algorithm> #include<vector> using names
分类:其他好文   时间:2016-02-07 21:18:30    阅读次数:306
bzoj3620 似乎在梦中见过的样子
好久没有写过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
【AC自动机】HDU中模板题汇总(待更新)
【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翻译系列----材料主题的使用(Using Material Theme)
上一篇是使用Material Design 创建App翻译系列—-開始学习篇,进入正题: 新的材料主题提供了下面内容: 1. 提供了同意设置颜色板的系统部件组件。 2. 为这些系统组件提供了触摸反馈动画。 3. Activity的过渡动画。 依据你的品牌标识,使用你所控制的颜色板能够自己定义材料主题
分类:移动开发   时间:2016-02-06 22:23:12    阅读次数:273
扩展方法 DataTable的ToList<T>
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
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!