码迷,mamicode.com
首页 > 其他好文
raw socket
一个很newbee的例子,可惜还得改 1 import sys 2 import time 3 4 import socket 5 import struct 6 7 import random 8 9 def SendPacketData (Buffer = None , DestIP = ...
分类:其他好文   时间:2015-01-08 00:50:01    阅读次数:339
[LeetCode#108]Convert Sorted Array to Binary Search Tree
The problem:Given an array where elements are sorted in ascending order, convert it to a height balanced BST.My analysis:The recursion is the best way...
分类:其他好文   时间:2015-01-08 00:49:30    阅读次数:265
GridView合并表头、多重表头(转)
protected void GridView1_RowCreated(object sender, GridViewRowEventArgs e) { switch (e.Row.RowType) { case DataControlRowType....
分类:其他好文   时间:2015-01-08 00:49:29    阅读次数:246
mount命令
mount [-lhV]mount -a [-fFnrsvw] [-t vfstype] [-O optlist]mount [-fnrsvw] [-o options [,...]] device | dirmount [-fnrsvw] [-t vfstype] [-o options] dev...
分类:其他好文   时间:2015-01-08 00:46:43    阅读次数:488
等比例缩放图片
public class GetThumbnailImg { /// /// 读取图片的缩略图 /// /// 源图片的路径 /// 生成缩略图的目录 ...
分类:其他好文   时间:2015-01-08 00:47:50    阅读次数:259
对换空间--文件系统管理方式
对文件区管理的主要目标是提高文件存储空间的利用率,然后才提高对文件的访问速度,因此,对文件区空间的管理采取离散分配方式。对对换空间管理的主要目标是提高进程换入和换出的速度,然后才是提高文件存储空间的利用率,因此,对对换区空间的管理采取连续分配方式,较少的考虑外存中的碎片问题。
分类:其他好文   时间:2015-01-08 00:48:00    阅读次数:412
[MODx] 8. Snippet get data, chunk display
Simple Example:Lets process this chunk and output its value. We have this Chunk, called "WelcomeChunk":Welcome [[+name]]!We'll put this in our Snippet...
分类:其他好文   时间:2015-01-08 00:48:11    阅读次数:258
bash中的文件测试
如果下面的条件成立返回真...-e文件存在-a文件存在这个和-e的作用一样. 它是不赞成使用的,所以它的用处不大。-f文件是一个普通文件(不是一个目录或是一个设备文件)-s文件大小不为零-d文件是一个目录-b文件是一个块设备(软盘, 光驱, 等等.) -c文件是一个字符设备(键盘, 调制解调器, 声...
分类:其他好文   时间:2015-01-08 00:47:14    阅读次数:252
[LeetCode] Sum Root to Leaf Numbers dfs,深度搜索
Given a binary tree containing digits from0-9only, each root-to-leaf path could represent a number.An example is the root-to-leaf path1->2->3which rep...
分类:其他好文   时间:2015-01-08 00:45:25    阅读次数:257
【leetcode】Spiral Matrix
Spiral MatrixGiven a matrix ofmxnelements (mrows,ncolumns), return all elements of the matrix in spiral order.For example,Given the following matrix:[...
分类:其他好文   时间:2015-01-08 00:45:10    阅读次数:245
SIMCom智能设备扫描头接口说明[转]
Document Title: SIMCom智能设备扫描头接口说明Version: 1.01Date: 2014-02-13Status: ReleaseDocument Control ID: SIM0005Writer: Yunqi.miao通过程序代码开启扫描通过广播实现,广播名称为:andr...
分类:其他好文   时间:2015-01-08 00:45:49    阅读次数:256
试论大型体育比赛对城市经济社会及体育的有益影响
在全球化背景下,由于经济转型、科技进步等因素的影响,城市之间的竞争日趋激烈,举办国际或国家级体育赛事已成为了我国各大城市和中小城市塑造城市形象、提升城市知名度、促进城市发展的重要手段。尤其是 2008 年北京奥运会的成功举办,掀起了我国城市举办各级体育赛事的热潮。随后举办的第 11 届全运会、第 7...
分类:其他好文   时间:2015-01-08 00:43:21    阅读次数:211
XP系统下IIS常见的几个问题
XP系统安装IIS所遇到的一些问题及解决方法,个人使用中所遇到的问题,HTTP 错误 500.100 - 内部服务器错误 - ASP 错误,127.0.0.1 HTTP 错误 401.2 - 未授权:服务器配置导致登录失败,IUSR_ IWAM_ ,401.2
分类:其他好文   时间:2015-01-08 00:43:00    阅读次数:422
Majority Element
Given an array of size n, find the majority element. The majority element is the element that appears more than ? n/2 ? times.You may assume that the ...
分类:其他好文   时间:2015-01-08 00:44:50    阅读次数:274
cassandra 的一次调试
配置好 cassandra.yaml 之后 ,两台主机竟然不通信: [root@SCAN_190 apache-cassandra-2.1.2]# cat conf/cassandra.yaml |grep 172 - seeds: "172.16.1.141,172.16.1.190" listen_address: 172.16.1.190 rpc_ad...
分类:其他好文   时间:2015-01-07 23:41:08    阅读次数:333
leetcode---------------Two Sum
Given an array of integers, find two numbers such that they add up to a specific target number. The function twoSum should return indices of the two numbers such that they add up to the target, whe...
分类:其他好文   时间:2015-01-07 23:40:44    阅读次数:362
Output result string after numbers addition and subtraction
通过键盘输入100以内正整数的加、减运算式,请编写一个程序输出运算结果字符串。 输入字符串的格式为:“操作数1 运算符 操作数2”,“操作数”与“运算符”之间以一个空格隔开...
分类:其他好文   时间:2015-01-07 23:39:44    阅读次数:374
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!