码迷,mamicode.com
首页 >  
搜索关键字:change vector    ( 18629个结果
jquery获得select option的值和对select option的操作
1、jQuery获取Select元素,并选择的Text和Value: 1. $("#select_id").change(function(){//code...}); //为Select添加事件,当选择其中一项时触发 2. var checkText=$("#select_id").find(.....
分类:Web程序   时间:2014-04-30 19:27:58    阅读次数:555
Mine Number(搜索,暴力) ACM省赛第三届 G
Mine NumberTime Limit: 1000ms Memory limit: 65536K有疑问?点这里^_^题目描述Every one once played the game called Mine Sweeping, here I change the rule. You are g...
分类:其他好文   时间:2014-04-30 01:05:41    阅读次数:857
Codeforces Round #243 (Div. 2) B. Sereja and Mirroring
#include #include #include using namespace std;int main(){ int n,m; cin >> n >> m; vector > a(n,vector(m,0)); for(int i = 0; i > a[i][j]; ...
分类:其他好文   时间:2014-04-29 17:41:18    阅读次数:425
Codeforces Round #243 (Div. 2) A. Sereja and Mugs
#include #include #include #include using namespace std;int main(){ int n,s; cin >> n >> s; vector a(n); for(int i = 0 ; i > a[i]; sort...
分类:其他好文   时间:2014-04-29 16:42:39    阅读次数:415
数据库学习笔记(一)
1.在ORACLE里默认只有三个系统用户,ORACLE是通过用户登入。 SYS用户:超级管理员,权限最高,它的角色是DBA。默认密码是change_on_install。具有创建数据库的权限 SYSTEM用户:系统管理员,权限很高,它的角色是DBA operator,默认密码manager。不具有....
分类:数据库   时间:2014-04-29 11:38:45    阅读次数:516
STL中容器的push()或者push_back()函数的一点说明
在STL的queue 或者 vector、list等容器适配器或者容器中,会经常用到的函数就是push()或者push_back()函数,但是有一点需要明确的是:在使用这些函数对容器/适配器对象增加新元素的时候,实际上是对原有的元素对象复制重新新建了一个元素对象作为元素压入到容器/适配器对象中。例如...
分类:其他好文   时间:2014-04-29 09:43:46    阅读次数:1521
Codeforces Round #243 (Div. 2) C. Sereja and Swaps
由于n比较小,直接暴力解决#include #include #include #include #include #includeusing namespace std;int main(){ int n,k; cin >> n >> k; vector a(n); for...
分类:其他好文   时间:2014-04-29 09:18:46    阅读次数:412
vector 学习笔记
vector 使用练习:/***************************************** File Name: vector.cpp* Author: sky0917* Created Time: 2014年04月27日 11:07:33*********************...
分类:其他好文   时间:2014-04-28 18:52:27    阅读次数:1659
重读C++ Primer笔记
C++ Primer 5E 有符号和无符号 无符号类型和有符号类型混合运算时,有符号数会被提升至无符号类型,如果其值为负责会产生错误。 int main(){ unsigned int u = 10; int i = -42; std::cout using Vec = vector>;auto和d...
分类:编程语言   时间:2014-04-28 00:19:15    阅读次数:575
18629条   上一页 1 ... 1861 1862 1863
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!