码迷,mamicode.com
首页 >  
搜索关键字:hide    ( 2565个结果
leetcode || 109、Convert Sorted List to Binary Search Tree
problem: Given a singly linked list where elements are sorted in ascending order, convert it to a height balanced BST. Hide Tags  Depth-first Search Linked List 题意:给定一个递增的单链表,将其转...
分类:其他好文   时间:2015-04-23 10:58:24    阅读次数:165
leetcode || 106、Construct Binary Tree from Inorder and Postorder Traversal
problem: Given inorder and postorder traversal of a tree, construct the binary tree. Note: You may assume that duplicates do not exist in the tree. Hide Tags  Tree Array Depth-first...
分类:其他好文   时间:2015-04-23 09:35:14    阅读次数:157
leetcode || 105、Construct Binary Tree from Preorder and Inorder Traversal
problem: Given preorder and inorder traversal of a tree, construct the binary tree. Note: You may assume that duplicates do not exist in the tree. Hide Tags  Tree Array Depth-first ...
分类:其他好文   时间:2015-04-22 11:49:15    阅读次数:122
leetcode || 104、Maximum Depth of Binary Tree
problem: Given a binary tree, find its maximum depth. The maximum depth is the number of nodes along the longest path from the root node down to the farthest leaf node. Hide Tags  Tr...
分类:其他好文   时间:2015-04-21 11:20:10    阅读次数:108
JQuery入门(7)动画效果
一、显示和隐藏 在jQuery中使用 hide() 和 show() 方法来隐藏和显示 HTML 元素:hide()的语法形式:$(selector).hide(speed,callback);show()的语法形式:$(selector).show(speed,callback);speed 参数规定隐藏/显示的速度,可以取以下值:”slow”、”fast”或毫秒。 callback 参数是隐藏...
分类:Web程序   时间:2015-04-20 17:00:12    阅读次数:159
jQuery 优化
一、选择器性能优化建议1. 总是从#id选择器来继承这是jQuery选择器的一条黄金法则。jQuery选择一个元素最快的方法就是用ID来选择了。$('#content').hide();或者从ID选择器继承来选择多个元素:$('#content p').hide();2. 在class前面使用tag...
分类:Web程序   时间:2015-04-18 01:02:36    阅读次数:139
【开发】Form 表单 Linkbutton 禁用
在权限判定中,对于无权限操作的按钮可直接隐藏($.hide())。HTML 定义分配任务JS 取对象var $btnPreAssign_GeneralTasks = $('#btnPreAssign_GeneralTasks');禁用:$btnPreAssign_GeneralTasks.linkb...
分类:其他好文   时间:2015-04-17 11:03:38    阅读次数:134
BZOJ 1941 Sdoi2010 Hide and Seek K-Dimensional-Tree
题目大意:给定平面上的n个点,定义距离为曼哈顿距离,求一个点到其他所有点的最大距离与最小距离之差最小 KDTree……这东西好神啊 注意计算最小距离的时候不能把自己也算进去= = #include #include #include #include #define M 500500 #define INF 0x3f3f3f3f using namespace std; struct...
分类:其他好文   时间:2015-04-15 13:42:12    阅读次数:327
JQ nextALL() 实现遍历
在我们的 手机端 常常需要 应用到 hide 和 show 的方法 来节省页面的版块那么我们需要更多的是 需要 show 一个 hide 剩下的 那么 我们就需要应用到 nextAll()的方法先贴代码
分类:其他好文   时间:2015-04-15 11:12:18    阅读次数:162
MATERIAL MASTER
MM01建立缺省值,如圖:2、字段狀態的組合控制 a、字段狀態的優先級,由高往低 HIDE diaplay reqd entry opt. entryb、字段狀態五個組合 行業領域 M 工廠關聯字段 0001 事務代碼(mm02/mm01/mm03) 採購類型(E OR F) 物料類型 (...
分类:其他好文   时间:2015-04-14 19:41:06    阅读次数:153
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!