首页 > 2015年04月18日 > 全部分享
内存偏移
1 #include "stdafx.h" 2 3 class A 4 { 5 public: 6 A(){m_a = 1; m_b = 2;} 7 void fun(){printf("%d %d\n", m_a, m_b);} 8 private: 9 int m_a...
分类:其他   时间:2015-04-18 01:02:21    收藏:0  评论:0  赞:0  阅读:333
JQuery的鼠标滚动事件
jQuery(window).height()代表了当前可见区域的大小,而jQuery(document).height()则代表了整个文档的高度,可视具体情况使用. 注意当浏览器窗口大小改变时(如最大化或拉大窗口后) jQuery(window).height() 随之改变,但是jQuery(do...
分类:Web开发   时间:2015-04-18 01:02:11    收藏:0  评论:0  赞:0  阅读:346
常用数据结构及算法C#实现
常用数据结构及算法C#实现1.冒泡排序、选择排序、插入排序(三种简单非递归排序) 1 int[] waitSort = { 1,0, 12, 13, 14, 5, 6, 7, 8, 9, 10 }; 2 3 //冒泡排序 4 ...
分类:编程语言   时间:2015-04-18 01:02:01    收藏:0  评论:0  赞:0  阅读:326
jquery,checkbox无法用attr()二次勾选
今晨,漂亮的测试妹妹提了个奇怪的bug,说我一功能checkbox时隐时现,比如第一次打开有勾选,第n次打开可能就不选了。想到与美女有亲密接触机会,马上鸡动起来。经过偶层层抽次剥茧(da da jiang you),终于知道了原因:attr()在二次选中勾选框时,失效。比如,如下HTML页面,一点【...
分类:Web开发   时间:2015-04-18 01:01:51    收藏:0  评论:0  赞:0  阅读:303
window.onload
1 2 3 4 5 6 12 13 14 15 16 1 2 3 4 5 6 7 8 9 13 14
分类:Windows开发   时间:2015-04-18 01:01:41    收藏:0  评论:0  赞:0  阅读:288
MAC安裝CocoaPods
前言,鑒於很多人都比較趕時間,有人是為了去應付工作,有人是為了去找妹子,總之,不管你懂不懂,如果你只是想安裝一下,那麼你只需要按照濤叔下面畫黃色的命令複製粘貼到終端順序執行就好了。一、安裝1、Ruby环境搭建1.1查看下当前ruby版本:打开终端输入 ruby -v$ ruby -vlibotaod...
分类:系统服务   时间:2015-04-18 01:00:51    收藏:0  评论:0  赞:0  阅读:448
As3.0 视频缓冲、下载总结
来源:http://www.cuplayer.com/player/PlayerCodeAs/2012/0913404.html利用NetStream的以下属性:bufferTime — 缓冲区大小。可设置(单位为秒),默认为0.1秒bufferLength — 已进入缓冲区的秒数bufferLen...
分类:其他   时间:2015-04-18 01:00:21    收藏:0  评论:0  赞:0  阅读:590
54. Spiral Matrix
题目:Given a matrix ofmxnelements (mrows,ncolumns), return all elements of the matrix in spiral order.For example,Given the following matrix:[ [ 1, 2, 3...
分类:其他   时间:2015-04-18 01:00:11    收藏:0  评论:0  赞:0  阅读:264
Topcoder SRM656div1 250 ( 期望DP )
Problem StatementCharlie has N pancakes. He wants to serve some of them for breakfast. We will number the pancakes 0 through N-1. For each i, pancake ...
分类:其他   时间:2015-04-18 01:00:01    收藏:0  评论:0  赞:0  阅读:271
flash 右键菜单隐藏与修改
来源:http://blog.sina.com.cn/s/blog_7264c84401014fmd.htmlimport flash.ui.ContextMenu;import flash.ui.ContextMenuItem;import flash.events.ContextMenuEven...
分类:其他   时间:2015-04-18 00:59:51    收藏:0  评论:0  赞:0  阅读:399
Jquery实现上下移动排序---兰
Insert title here --> 蕙兰建兰寒兰墨兰
分类:移动平台   时间:2015-04-18 00:59:31    收藏:0  评论:0  赞:0  阅读:387
hdu 1015 Safecracker 水题一枚
题目链接:HDU - 1015=== Op tech briefing, 2002/11/02 06:42 CST ==="The item is locked in a Klein safe behind a painting in the second-floor library. Klein ...
分类:其他   时间:2015-04-18 00:59:11    收藏:0  评论:0  赞:0  阅读:810
hdu 1151 或 poj 1422 二分图 最小点覆盖集
最小点覆盖集的裸题,只要“拆点建边”然后求出最大匹配,则:最小点覆盖集的大小 = 点数 - 最大匹配 1 #include 2 #include 3 #include 4 using namespace std; 5 6 const int N = 121; 7 const int M = ...
分类:其他   时间:2015-04-18 00:59:01    收藏:0  评论:0  赞:0  阅读:290
【冰茶几专题】C - Find them, Catch them
C -Find them, Catch themTime Limit:1000MSMemory Limit:10000KB64bit IO Format:%I64d & %I64uSubmitStatusDescriptionThe police office in Tadu City decide...
分类:其他   时间:2015-04-18 00:58:31    收藏:0  评论:0  赞:0  阅读:302
java 对mongodb的操作
java 对mongodb的操作1.1连单台mongodbMongomg=newMongo();//默认连本机127.0.0.1端口为27017Mongomg=newMongo(ip);//可以指定ip端口默认为27017Mongomg=newMongo(ip,port);//也可以指定ip及端口号...
分类:数据库技术   时间:2015-04-18 00:58:21    收藏:0  评论:0  赞:0  阅读:432
冷笑话-手持两把锟斤拷 口中疾呼烫烫烫 脚踏千朵屯屯屯 笑看万物锘锘锘
手持两把锟斤拷 口中疾呼烫烫烫 脚踏千朵屯屯屯 笑看万物锘锘锘 就用这个冷笑话来作为第一篇把,应该都通过这个冷笑话吧,也是编程中经常会遇到的问题。。。 聊聊原理吧。。 锟[kūn]斤拷,http://baike.baidu.com/link?url=GCoDM7HBIV_JcJfXzIU9p1Rx7...
分类:其他   时间:2015-04-18 00:58:01    收藏:0  评论:0  赞:0  阅读:7710
hdu 4435 第37届ACM/ICPC天津现场赛E题
转载请注明出处,谢谢http://blog.csdn.net/ACM_cxlove?viewmode=contents by---cxlove题目:给出N个城市,从1开始需要遍历所有点,选择一些点建立加油站,使得花费最少这题的特殊性在于他的花费上,2^(i-1)利用一个非常重要的性质,2^0+2^1...
分类:其他   时间:2015-04-18 00:57:41    收藏:0  评论:0  赞:0  阅读:357
dom对象
1 document.getElementById();根据id找2 document.getElementsByclassName();根据类名class找3 document.getElementsByName();根据名称找4 document.getElementsByTagName();根...
分类:其他   时间:2015-04-18 00:57:31    收藏:0  评论:0  赞:0  阅读:335
1478条   上一页 1 ... 72 73 74
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!