听说有一种最小(大)堆,不限于是完全二叉树,而是完全D叉树,名为D-ary Heap(http://en.wikipedia.org/wiki/D-ary_heap)。D可以是1,2,3,4,100,对于优先队列该有的功能都没有问题。 动手写一个D-ary Heap,应该不难。简单起见,不考虑...
分类:
其他 时间:
2014-11-26 23:59:52
收藏:
0 评论:
0 赞:
0 阅读:
667
abstract class 和 interface 的区别 含有abstract修饰符的class即为抽象类,abstract 类不能创建实例对象。含有abstract方法的类必须定义为abstract class,abstract class类中的方法不一定是抽象的。 abstract clas...
分类:
编程语言 时间:
2014-11-26 23:59:42
收藏:
0 评论:
0 赞:
0 阅读:
514
今天主要复习了一下昨天学习的窗体小程序。主要会运用到控件的一些基本属性。程序:走马灯(要求是:使用两个窗体,两个窗体之间要传值,Form1传值给Form2,传入的字符串在Form2窗体上横向滚动)* 首先是设定界面(txtname,txtpwd。第二个文本框txtname设置它的UseSystemP...
分类:
Windows开发 时间:
2014-11-26 23:59:22
收藏:
0 评论:
0 赞:
0 阅读:
736
#include int main(){ int i,j,c=0; for(i=2;i<100;i++) { for(j=2;j<i;j++) { if(i%j==0) break; } if(j==i) { if(c%10==0) { printf('\n"); } printf("%6...
分类:
其他 时间:
2014-11-26 23:59:02
收藏:
0 评论:
0 赞:
0 阅读:
565
1,源文件依赖关系 defs.h command.h buffer.hmain.cpp *util.cpp *kde.cpp * *command.cpp ...
分类:
其他 时间:
2014-11-26 23:58:52
收藏:
0 评论:
0 赞:
0 阅读:
565
cool thing happen today :) envrioment set up and seleniumn can run. let's explore the selenium-webdirversave the comand as bat, so next time just doub...
分类:
编程语言 时间:
2014-11-26 23:58:42
收藏:
0 评论:
0 赞:
0 阅读:
536
今天我们要讲的复合,当然不是小情侣吵着分手,然后又在一起的复合。 复合遵循一个合成复用原则,又称为组合或者聚合复用原则。该原则的内容是:尽量使用对象组合,而不是继承来达到复用的目的。用聚合可以使系统更加灵活,类与类之间的耦合度降低。在objective-c中,复合是指将多个组件组合在一起,配合...
分类:
其他 时间:
2014-11-26 23:58:32
收藏:
0 评论:
0 赞:
0 阅读:
515
假设表结构如下所示: Tsheets 字段名 字段类型 约束 id CHAR(10) PRIMARY KEY start_d...
分类:
数据库技术 时间:
2014-11-26 23:58:22
收藏:
0 评论:
0 赞:
0 阅读:
563
标准的USB设备有5种USB描述符:设备描述符,配置描述符,字符串描述符,接口描述符,端点描述符。 1 // Standard Device Descriptor 2 typedef struct 3 { 4 u8 bLength; 5 u8 bDescriptorType;...
分类:
其他 时间:
2014-11-26 23:58:02
收藏:
0 评论:
0 赞:
0 阅读:
583
Welcome to Part 6 ofSpring 3.0 MVC Series. Inprevious articlewe saw how to add Internationalization i18n and Localization L10n support to Spring 3.0 b...
分类:
编程语言 时间:
2014-11-26 23:57:52
收藏:
0 评论:
0 赞:
0 阅读:
1122
#includeusing namespace std;int main(){ int a[10]={1,2,3,4,5,21,34,45,115,4121}; int f,tail=0,top=9,mid=(top+tail)/2; int n; cout>n; wh...
分类:
其他 时间:
2014-11-26 23:57:42
收藏:
0 评论:
0 赞:
0 阅读:
552
question:Given an array of integers, find two numbers such that they add up to a specific target number.The function twoSum should return indices of t...
分类:
其他 时间:
2014-11-26 23:57:32
收藏:
0 评论:
0 赞:
0 阅读:
631
1-3 输入和显示puts函数只接受 一个 实参,并且在结尾自动换行2-1运算求商运算符 :除法运算符" / ",如果是两个整数相除结果为整数如果需要保留小数时 必须将其中一个除数转换为浮点数。5/3=1 3/5=0 6.0/4=1.5 (List01)求余运算符 int%int用printf函数....
分类:
编程语言 时间:
2014-11-26 23:57:22
收藏:
0 评论:
0 赞:
0 阅读:
1541
需求: 将20141126010101格式UTC时间转换为本地时间。 在网上搜了好长时间都没有找到完美的解决方案。有的引用了第三方库,这就需要在现网安装第三方的软件。这个是万万不可的。因为真实环境不一定允许你随便使用root用户安装Python模块。最终找到了一个不用外部模块的完美解决方案,放在.....
分类:
编程语言 时间:
2014-11-26 23:57:03
收藏:
0 评论:
0 赞:
0 阅读:
987
动态规划:There areNchildren standing in a line. Each child is assigned a rating value.You are giving candies to these children subjected to the following ...
分类:
其他 时间:
2014-11-26 23:56:57
收藏:
0 评论:
0 赞:
0 阅读:
572
要求:算法时间复杂度为O(n)。代码:public int getThirdMaxElement(int[] array) { if(array == null) { return 0; } if(array.length == 1) { return array[0]; } if...
分类:
编程语言 时间:
2014-11-26 23:56:42
收藏:
0 评论:
0 赞:
0 阅读:
556
jstl标签库分为5类,分别是:核心标签库:c(前缀) http://java.sun.com/jsp/jstl/core(url)118N标签库:fmt http://java.sun.com/jsp/jstl/fmtsql标签库: sql http://java.sun.com/...
分类:
Web开发 时间:
2014-11-26 23:56:32
收藏:
0 评论:
0 赞:
0 阅读:
553
1 /** 2 * Definition for singly-linked list. 3 * struct ListNode { 4 * int val; 5 * ListNode *next; 6 * ListNode(int x) : val(x), ne...
分类:
编程语言 时间:
2014-11-26 23:56:22
收藏:
0 评论:
0 赞:
0 阅读:
266
来t00ls几天啦,也没时间写原创。 --(本人首发土司啦。)最近看到老外一篇文章,觉得很不错。测试了一下把这个东西把过程分享给大伙,希望大伙不要踩,忙完这几天就写原创调用一个js,扫描内网是否存在bash漏洞,然后反弹shell回来的一个小东西。搞APT应该用得到啦。测试过程:老外发的一个Poc....
分类:
Web开发 时间:
2014-11-26 23:56:12
收藏:
0 评论:
0 赞:
0 阅读:
534
/* * 策略模式定义了一系列的算法,并将每一个算法封装起来,而且使它们还可以相互替换。 * 策略模式让算法独立于使用它的客户而独立变化。 * 抽象策略角色: 策略类,通常由一个接口或者抽象类实现。 * 具体策略角色:包装了相关的算法和行为。 * 环境角色:持...
分类:
其他 时间:
2014-11-26 23:55:42
收藏:
0 评论:
0 赞:
0 阅读:
354