太原市阳曲县圆通公司客服电话:0351-5568183、15536086959网点地址:派送范围:阳曲县(黄寨镇)1、泥屯镇(仅派送泥屯镇街道,加一个工作日,有偿收费标准:5KG以内3元,续重1元/KG)2、大盂镇、东黄水(仅派送镇区,加2个工作日,有偿收费标准:5KG以内3元,续重1元....太原...
分类:
其他好文 时间:
2014-08-01 06:57:31
阅读次数:
358
题目:Given a binary tree containing digits from 0-9 only, each root-to-leaf path could represent a number.An example is the root-to-leaf path 1->2->3 w....
分类:
编程语言 时间:
2014-08-01 06:57:21
阅读次数:
297
求解最小生成树(Minimum Cost Spanning Tree,以下简写做MST)是图相关的算法中常见的一个,本篇介绍两种求解MST的算法:Prim和Kruskal,然后测试之。
分类:
其他好文 时间:
2014-08-01 06:57:11
阅读次数:
394
Next time you see a numeric problem has a too straightforward solution, think about optimized one.Like this one: recursion\iteration is tooo slow. SoD...
分类:
其他好文 时间:
2014-08-01 06:57:01
阅读次数:
279
题目:Given inorder and postorder traversal of a tree, construct the binary tree.Note:You may assume that duplicates do not exist in the tree.题解:这道题跟pre....
分类:
编程语言 时间:
2014-08-01 06:56:51
阅读次数:
185
题目:Given preorder and inorder traversal of a tree, construct the binary tree.Note:You may assume that duplicates do not exist in the tree.题解: 1 ...
分类:
编程语言 时间:
2014-08-01 06:56:41
阅读次数:
228
int gauss_blur(
byte_t* image,
//位图数据
int linebytes,
//位图行字节数,BMP数据在windows中是4字节对齐的。否则在处理非二次幂的图像时会有偏差
int width,
//位图宽度
int height,
//位图高度
int cbyte,
//颜色通道数量
float sigma
//高斯系数
)
{...
分类:
其他好文 时间:
2014-08-01 04:55:01
阅读次数:
412
工作中一个方案可行性预研写的小Demo,一晚上搞定的小程序.
主要功能是一个Http透明转发:
1.监听一个端口, 接收浏览器的连接请求.
2. 接收浏览器发出的请求数据, 将这些转发给一个指定的服务器.
3. 接收服务器的应答,将应答发送给浏览器....
分类:
其他好文 时间:
2014-08-01 04:54:52
阅读次数:
292
题目:Given a singly linked list where elements are sorted in ascending order, convert it to a height balanced BST.题解:之前做过一道是从sorted array转换到BinarySearc....
分类:
编程语言 时间:
2014-08-01 04:54:21
阅读次数:
310
下面应用转自Wikipedia(http://zh.wikipedia.org/wiki/%E5%8D%A1%E5%A1%94%E5%85%B0%E6%95%B0):组合数学中有非常多的组合结构可以用卡塔兰数来计数。在Richard P. Stanley的Enumerative Combinato....
分类:
其他好文 时间:
2014-08-01 04:54:01
阅读次数:
339
Ubuntu 下使用BeagleBone Black(一) planck@planck-Ubuntu:/dev$ sudo apt-get install ckermit [sudo] password for planck: Reading package lists... Done Buildi...
分类:
其他好文 时间:
2014-08-01 04:53:51
阅读次数:
978
Ubuntu上安装与使用putty 下面便是小弟学习安装和是用Putty的过程: 首先,输入如下命令,并按下Tab键,发现库中存在三个与Putty 相关的文件,直接使用Putty便可: planck@planck-Ubuntu:/dev$ sudo apt-get install putty put...
分类:
其他好文 时间:
2014-08-01 04:53:41
阅读次数:
1270
题目: Given n, generate all structurally unique BST's (binary search trees) that store values 1...n.For example,Given n = 3, your program should return....
分类:
编程语言 时间:
2014-08-01 04:53:31
阅读次数:
279
http://blog.csdn.net/ljphhj/article/details/11939591http://my.oschina.net/lvkun0223/blog/282356两者的综合版# Copyright (c) 1993-2009 Microsoft Corp.## This ...
分类:
其他好文 时间:
2014-08-01 04:53:21
阅读次数:
725
题目:Given n, how many structurally unique BST's (binary search trees) that store values 1...n?For example,Given n = 3, there are a total of 5 unique B....
分类:
编程语言 时间:
2014-08-01 04:53:11
阅读次数:
272
def printNodeConAttr(): import re sellist = mc.ls(sl=1) all=[] D={} for a in sellist: lists = mc.listConnections(a,plugs=True,scn = True,c=1) for b in...
分类:
其他好文 时间:
2014-08-01 04:53:01
阅读次数:
176
#include #include int* fun(int* a){ std::cout << *a << std::endl;//这样有问题吗???? int temp = 100; return &temp;//这个是典型的错误}int main(){ int a = ...
分类:
其他好文 时间:
2014-08-01 04:52:58
阅读次数:
178