显示效果:
红色的部分就是Badge,可以用来显示数量或者是其他的信息。
使用其实很简单, $.ui.updateBadge("#" + id, res.Msg, "tr");
第一个参数是需要显示的标签编号,第二个参数是需要显示的文字,第三个参数是需要显示的位置。
bl - bottom left
tl - top left
br - bottom ri...
分类:
移动开发 时间:
2014-06-20 13:10:33
阅读次数:
263
题目
Given preorder and inorder traversal of a tree, construct the binary tree.
Note:
You may assume that duplicates do not exist in the tree.
方法
根据树的中序遍历和前序遍历,来构造树,使用递归的思想。
Tre...
分类:
其他好文 时间:
2014-06-20 12:14:49
阅读次数:
262
三元运算符Vb中的iif(expr,truepart,falsepart)和C#中的expr?truepart:falsepart.无论expr的结果是true还是false,true/falsepart都会被执行.所以不能写类似于obj!=null?obj.name:string.empty.tr...
分类:
其他好文 时间:
2014-06-10 21:38:50
阅读次数:
212
网易博客发现小组风格手机博客玩LOFTER,免费冲印20张照片!>创建博客登录加关注黙言-在路上奋斗首页日志相册音乐收藏博友关于我黙言加博友关注他他的网易微博最新日志Javascript操作select控件Oracle存储过程基本语法将域名和tomcat6进行绑定的svn423LockedJS的tr...
分类:
编程语言 时间:
2014-06-09 16:55:35
阅读次数:
388
var allchooseEmpID = "";var allchooseEmpName =
"";//自选经办人 function getJbrWinForMy() { top.MainFrameJS.openWindow({ width: 800,
height: 600, modal: tr....
分类:
Web程序 时间:
2014-06-09 14:36:12
阅读次数:
327
html页面代码如下:
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
http://www.w3.org/1999/xhtml">
* { margin:0; padding:0; }
div.centent {
flo...
分类:
Web程序 时间:
2014-06-08 16:53:59
阅读次数:
424
1. 递归解法
/**
* Definition for binary tree
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode(int x) : val(x), left(NULL), right(NULL) {}
* };
*/
cl...
分类:
其他好文 时间:
2014-06-08 16:51:59
阅读次数:
199
问题:
给定二叉树的前序和中序遍历,重构这课二叉树.
分析:
前序、中序、后序都是针对于根结点而言,所以又叫作先根、中根、后根(当然不是高跟)。
前序:根 左 右
中序:左 根 右
对二叉树,我们将其进行投影,就会发现个有趣的事:
发现投影后的顺序,恰好是中序遍历的顺序,这也就是为什么在构造二叉树的时候,一定需要知道中序遍历,因为中序遍历决定了结点间的相对左右位置关系。所...
分类:
其他好文 时间:
2014-06-08 15:20:12
阅读次数:
214
问题:
由中序和后序遍历构造二叉树。
分析:
Construct Binary Tree from Preorder and Inorder
Traversal
//实现
TreeNode *addNode(vector &inorder, int s1, int end1, vector &postorder, int s2, int end2)
{
...
分类:
其他好文 时间:
2014-06-08 09:56:52
阅读次数:
206
题目
Given inorder and postorder traversal of a tree, construct the binary tree.
Note:
You may assume that duplicates do not exist in the tree.
方法
根据树的中序遍历和后序遍历,来恢复树,使用递归的思想。
Tr...
分类:
其他好文 时间:
2014-06-07 14:50:37
阅读次数:
231