自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(6)
  • 资源 (2)
  • 收藏
  • 关注

转载 java创建哈夫曼树和实现哈夫曼编码

import java.util.*;public class HuffmanTree{ public static class Node { E data; double weight; Node leftChild; Node rightChild; public Node(E data , double weight) { this.data = dat

2014-05-05 14:43:54 6032

原创 java数据结构 七 栈(链式储存结构)

package com;/** 栈(链式储存结构) */public class LinearlinkStack { Entry linkStack; public LinearlinkStack(){ linkStack =new Entry(); } class Entry{ Object date; Entry next; } public

2014-05-04 16:41:01 553

原创 java数据结构 六 栈共享(顺序储存结构)

package com;/** 栈共享(顺序储存结构) */public class LinearTable { static int MAXSIZE=11; int top; int top2=MAXSIZE; Object[] objArray=new Object[MAXSIZE]; /** * * @param stackNumber 辨别栈1,栈2

2014-05-04 15:28:24 371

原创 java数据结构 五(栈)

package com;/** 栈 */public class LinearTable { static int MAXSIZE=5; int top; Object[] objArray=new Object[MAXSIZE]; public void push(Object ob){ if(top==(MAXSIZE-1)){ throw new Ind

2014-05-04 15:06:35 334

原创 java数据结构 四(双向链表)

package com;/** 双向链表 * 插入删除快,读取慢, * 让每个元素知道下个元素位置(内存地址) */public class LinearTable { Entry table; public LinearTable(){ table =new Entry(); } class Entry{ Object date; Entry nex

2014-05-04 14:35:30 400

原创 java数据结构 三(静态链表-游标实现)

package com;/** 静态链表-游标实现 * 数组操作代替指针 * 让每个元素知道下个元素位置(内存地址) */public class LinearTable { static int MAXSIZE=1000; table[] tableList=new table[MAXSIZE]; class table{ Object date; int

2014-05-04 13:38:24 732

wineBotter mfc42

mac wineBotter 缺失正确的mfc42.dll wine: Call from 0x7bc45498 to unimplemented function MFC42.DLL.6928, aborting wine: Unimplemented function MFC42.DLL.6928 called at address 0x7bc45498 (thread 0009), starting debugger...

2016-07-06

PDF转图片代码实例(完美实现)

本想依赖第三方jar包,但是对中文处理不是很好,通过朋友提示,最终完美解决。

2014-04-16

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除