# ls -li 总用量 39044 1829685 drwxr-xr-x 4 root root 4096 2月 9 15:06 2.1 1446168 -rw-rw-r-- 1 binwen binwen 37780423 2月 9 18:11 Htc_常用软件.zip 1829684 drwx... ...
分类:
系统相关 时间:
2018-12-05 13:53:16
阅读次数:
240
可以设置4个属性YConstraint,XConstraint,HeightConstraint,WidthConstraint 其中Contant是按照像素点偏移的值,Type是针对哪个控件的偏移有RelativeToParent和RelativeToView,ElementName是针对哪个控件 ...
分类:
其他好文 时间:
2018-11-28 12:26:13
阅读次数:
314
setting.callback.onRightClick=function(event, treeId, treeNode, msg){ if(treeNode.getParentNode()==null){//右键对象是分组 return false; } var zTree=$.fn.zTre... ...
分类:
其他好文 时间:
2018-11-23 20:36:41
阅读次数:
204
1、下载CSV格式数据,进行可视化 2、下载JSON格式文件可视化 import json --读取,写入json文件 from pygal.style import RotateStyle,LightColorizedStyle,LightenStyle --定义地图样式 import pygal ...
分类:
Web程序 时间:
2018-11-17 22:19:26
阅读次数:
224
层次序创建二叉树(图形界面和控制台输入实现) ...
分类:
其他好文 时间:
2018-11-07 23:05:50
阅读次数:
236
一、Delegate委托可以理解为一个方法签名。 可以将方法作为另外一个方法的参数带入其中进行运算。在C#中我们有三种方式去创建委托,分别如下: 二、Event事件,是一种封装过的委托。 它拥有以下三要素: 1.事件发行者-达到某些条件时激发事件的对象 2.事件订阅者-订阅事件并对事件发生时进行处理 ...
HDU 3791 Falling Leaves 二叉搜索树 Figure 1Figure 1 shows a graphical representation of a binary tree of letters. People familiar with binary trees can ski ...
分类:
其他好文 时间:
2018-10-29 23:36:01
阅读次数:
334
Given a binary tree, find the lowest common ancestor (LCA) of two given nodes in the tree. According to the definition of LCA on Wikipedia: “The lowes ...
分类:
其他好文 时间:
2018-09-21 00:34:31
阅读次数:
235
"简单的参考" 1、状态栏(statusBar) 默认:黑色 改变为白色: 1.1 第一步: 1.2 第二步: 2、导航栏的背景和文字Color: 2.1 方法一: 2.2 方法二: 3、导航栏使用背景图片: 4、取消导航栏按钮Item图片被渲染的效果 4.1 方法一:通过代码设置 4.2 方法二: ...
分类:
移动开发 时间:
2018-09-14 00:03:33
阅读次数:
246
package com.qifengle.tree; public class Tree { int number; Tree leftChild; Tree rightChild; public Tree(int number){ this.number=number; }} package co ...
分类:
编程语言 时间:
2018-09-10 15:41:25
阅读次数:
171