码迷,mamicode.com
首页 >  
搜索关键字:do it    ( 12356个结果
generate ascii table
$ cat ascii.sh dec_count=0while [ $dec_count -lt 256 ]do echo -e "\x$(echo "ibase=10;obase=16;$dec_count" | bc)\c" dec_count=$((dec_coun...
分类:其他好文   时间:2014-07-11 22:42:50    阅读次数:496
How to do code coverage test for windows service
First, instrument the exe or dll by commandvsinstr -coverage the dll/exesecond, start the performance monitorVSPerfCmd.exe /start:coverage /output:"D:...
分类:Windows程序   时间:2014-07-11 22:29:17    阅读次数:437
leetcode题解:Construct Binary Tree from Preorder and Inorder Traversal (根据前序和中序遍历构造二叉树)
题目: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-07-11 21:07:27    阅读次数:273
关于开源的RTP——jrtplib的使用
session.BeginDataAccess(); if (session.GotoFirstSource()){ do{ RTPPacket *packet; while ((packet = session.GetNextPacket()) != 0){ ...
分类:其他好文   时间:2014-07-11 20:51:41    阅读次数:210
leetcode题解:Construct Binary Tree from Inorder and Postorder Traversal(根据中序和后序遍历构造二叉树)
题目:Given inorder and postorder traversal of a tree, construct the binary tree.Note:You may assume that duplicates do not exist in the tree.说明: 1)实现与.....
分类:其他好文   时间:2014-07-11 20:40:38    阅读次数:198
How to make your assembly more secure from referencing by unauthorized bits
Now the security has a trend to become more and more important in our daily work, hence I did some researches on some of the topics, and hope to do mo...
分类:其他好文   时间:2014-07-11 19:20:52    阅读次数:283
AR# 30522:LogiCORE RapidIO - How do system_reset and link_reset work?
DescriptionHow do system_reset and link_rest work?Solutionlnk_linkreset_n (input):In Xilinx SRIO example design, rio_reset.v is provided to handle lin...
分类:Windows程序   时间:2014-07-11 12:08:03    阅读次数:358
Construct Binary Tree from Preorder and Inorder Traversal
Given preorder and inorder traversal of a tree, construct the binary tree.Note:You may assume that duplicates do not exist in the tree.思路:递归。主要是注意调用时起...
分类:其他好文   时间:2014-07-10 14:40:07    阅读次数:196
小谷实战Jquery(一)--用户名校验
小谷童鞋休息了好几天,终于又开始学习了.今天学的是Jquery,先来看看神马是jQuery? JQuery is designed to change the way that you write JavaScript. The focus of jQuery is "find some elements, do something with them". write less,do m...
分类:Web程序   时间:2014-07-09 12:48:41    阅读次数:221
POJ 1418 圆的基本操作以及 圆弧离散化
Viva Confetti Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 761   Accepted: 319 Description Do you know confetti? They are small discs of colored paper, and...
分类:其他好文   时间:2014-07-09 11:14:29    阅读次数:223
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!