码迷,mamicode.com
首页 >  
搜索关键字:vector iterators inc    ( 14378个结果
LeetCode Container With Most Water
class Solution{ public: int maxArea(vector& height) { int len = height.size(), low = 0, high = len -1 ; int maxArea = 0; ...
分类:其他好文   时间:2014-05-08 10:23:54    阅读次数:287
stl vector自定义类型的去重问题
最近项目遇到一个问题,有关stl vector自定义类型的去重问题。背景:1、在一个vector中,存在大量元素拥有同一属性,而其他属性我们不关心,为了减少数据包大小,需要去重 2、此自定义类型不能去重载==操作符(公司代码规范等原因) 3、正常情况下,vector中对象是有序的(拥有同一属...
分类:其他好文   时间:2014-05-08 10:01:02    阅读次数:345
HDU 1011 Starship Troopers(树形dp)
OJ题目:click here~~ 树上的01背包 const int maxn = 102; int val[maxn]; int w[maxn]; vector g[maxn]; int dp[maxn][maxn]; int n , m ; void dfs(int u , int father){ int v , i , j , k; for(i = w[u];i...
分类:其他好文   时间:2014-05-08 05:09:28    阅读次数:323
LeetCode Word Break II
class Solution {private: vector result;public: vector wordBreak(string s, unordered_set &dict) { vector > dp; result.clear(); ...
分类:其他好文   时间:2014-05-08 01:00:03    阅读次数:361
dedecms5.7最新guestbook.php文件sql注射漏洞利用 中国寒龙
影响版本为5.7漏洞文件edit.inc.php具体代码:ExecuteNoneQuery(” DELETE FROM `#@__guestbook` WHERE id=’$id’ “);ShowMsg(“成功删除一条留言!”, $GUEST_BOOK_POS);exit();}else if($j...
分类:数据库   时间:2014-05-07 17:14:29    阅读次数:3277
Fatal error: Maximum execution time of 30 seconds exceeded in
Fatal error: Maximum execution time of 30 seconds exceeded inC:\Program Files\Apache Software Foundation\Apache2.2\htdocs\code\curl\work\work3.phpon l...
分类:其他好文   时间:2014-05-07 16:53:31    阅读次数:338
Uva 12009 平方数尾数与自身相同 dfs 构造
题目链接:点击打开链接 题意:rt 思路:从最低位开始构造,若x位的平方数是自身则继续构造。 mark: #pragma comment(linker, "/STACK:1024000000,1024000000") #include #include #include #include #include #include #include #include #include #inc...
分类:其他好文   时间:2014-05-07 11:59:23    阅读次数:303
基于vector与CFile的学生信息管理系统
之前课堂上学了vector后一直没有用过,就写了下练了练手//student.hclass Student //学生类声明{private: char m_name[9]; char m_specialty[14]; int m_id; float ...
分类:其他好文   时间:2014-05-07 01:33:36    阅读次数:354
网络流模版
递归版 struct Edge { int from, to, cap, flow; Edge(){} Edge(int from, int to, int cap, int flow) : from(from), to(to), cap(cap), flow(flow){} }; int n, m, s, t; vector edges; vector G[maxn]; bool v...
分类:其他好文   时间:2014-05-06 23:39:25    阅读次数:351
Python 备份MySQL,并同步rsync server
#vim:tabstop=4shiftwidth=4softtabstop=4 #Copyright2010UnitedStatesGovernmentasrepresentedbythe #AdministratoroftheNationalAeronauticsandSpaceAdministration. #Copyright2011JustinSantaBarbara #AllRightsReserved. #Copyright(c)2010CitrixSystems,Inc. # #Licensed..
分类:数据库   时间:2014-05-06 20:19:17    阅读次数:629
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!