题目如下:
Tree
You are to determine the value of the leaf node in a given binary treethat is the terminal node of a path of least value from the root of thebinary tree to any le...
分类:
其他好文 时间:
2014-06-05 05:27:11
阅读次数:
268
题目如下;
Quadtrees
A quadtree is a representation format used to encode images. The fundamental ideabehind the quadtree is that any image can be split into four quadrants. Each...
分类:
其他好文 时间:
2014-06-05 04:20:06
阅读次数:
226
ASP.NET回发数据是通过函数__doPostBack来实现的,该函数在添加了服务端控件,并将AutoPostBack设置为true之后,将自动生成,具体可以参看下面的图。
同时还会生成隐藏控件,其ID为__EVENTTARGET和__EVENTARGUMENT,前一个是用于存放key的,后一个用于存放参数的。
所以在后台通过Request.Form来获取所要...
分类:
Web程序 时间:
2014-06-05 01:46:00
阅读次数:
324
获取deb包:
apt-get download 包名
解压deb包:
在这里保证你已经下载好了deb包,并且自己已经在deb包所在的目录了,然后解压缩deb包
ar -x pakname.deb
解压deb完毕后会发现多出几个文件,这里主要用到data.tar.gz等包,这个是放着二进制文件的包,用tar解压这个包
tar -zxf data.tar.gz...
分类:
其他好文 时间:
2014-06-05 01:19:30
阅读次数:
309
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
us...
分类:
其他好文 时间:
2014-06-05 00:31:37
阅读次数:
309
1:连接oracle
A:安装oracle服务端(11G/10G)
B:添加引用:
C:引入命名空间:using System.Data.OracleClient;
D:连接字符:
public OracleConnection getOracleConnection(String user,String password,String url)
{...
分类:
数据库 时间:
2014-06-05 00:09:39
阅读次数:
476
jQuery整理笔记一----jQuery开始...
分类:
Web程序 时间:
2014-05-31 21:49:52
阅读次数:
336
哈希表的链地址法来解决冲突问题将所有关键字为同义词的记录存储在同一个线性链表中,假设某哈希函数产生的哈希地址在区间[0, m -
1]上,则设立一个至振兴向量Chain ChainHash[m];数据结构//链表结点typedef struct _tagNode{ int data;
...
分类:
其他好文 时间:
2014-05-31 19:23:52
阅读次数:
436
2014-05-21 BaoXinjian In Capgemini1. Trigger(1).
Override模式:默认模式不再触发高级别事件(2). Before模式:触发完本级别事件后再触发高级别事件(3).
After模式:触发高级别事件后再触发本级别事件 2. 常用form trigge...
分类:
其他好文 时间:
2014-05-31 19:15:59
阅读次数:
368
3、Setting Up and Configuring Backup and Recovery
这个单元讲述如何启动、与rman client如何互动,准备rman环境,实现备份和恢复策略
注意:尽管闪回数据库和安全还原点不是真的数据库备份,但是它们是数据保护策略一个重要部分。这些特性需要一些初始化设置,这些设置依赖于在备份策略中你怎么混合它们。Chapter 5-Data Protecti...
分类:
其他好文 时间:
2014-05-31 17:35:22
阅读次数:
236