代码搜索:integer
找到约 10,000 项符合「integer」的源代码
代码结果 10,000
www.eeworm.com/read/292143/8375238
bas comp_lbe.bas
Attribute VB_Name = "Comp_LBE"
Option Explicit
'This is a 1 run method but because it stores some variables at the end of the
'compressed file the decompressor is a 2 run method
Private Di
www.eeworm.com/read/292143/8375241
bas comp_reducerhalfdict.bas
Attribute VB_Name = "Comp_ReducerHalfDict"
Option Explicit
'This is a 2 run method
'this reducer works by splitting a 256 chars dictionary into 128
'dictionaries of 2 chars each
'it will
www.eeworm.com/read/292143/8375260
bas comp_word2.bas
Attribute VB_Name = "Comp_Word2"
Option Explicit
'This is a 1 run method
Private ExtraBits(31) As Integer
Private StartVal(31) As Long
Private OutStream() As Byte
Private OutPos As Long
www.eeworm.com/read/292143/8375261
bas comp_vbc_dynamic.bas
Attribute VB_Name = "Comp_VBC_dynamic"
Option Explicit
Private Type BytePos
Data() As Byte
Position As Long
Buffer As Integer
BitPos As Integer
End Type
Private Stream(1)
www.eeworm.com/read/292143/8375262
bas comp_huffnogreed.bas
Attribute VB_Name = "Comp_HuffNoGreed"
Option Explicit
'This huffman sheme works with 3 bytes
'the one which is most common
'and 2 wich are least common
'It creates a tree where the most comm
www.eeworm.com/read/292143/8375265
bas comp_lzw_multi4stream.bas
Attribute VB_Name = "Comp_LZW_Multi4Stream"
Option Explicit
'This is a 1 run method but we have to keep the whole contents
'in memory until some variables are saved wich are needed bij the de
www.eeworm.com/read/292143/8375291
bas comp_reducerhuffcodes.bas
Attribute VB_Name = "Comp_ReducerHuffcodes"
Option Explicit
'This is a 2 run method
'This compressor makes use of a dictionary and code the ascii character
'to the position it is located i
www.eeworm.com/read/292143/8375315
bas comp_vbc_dynamic2.bas
Attribute VB_Name = "Comp_VBC_Dynamic2"
Option Explicit
Private Type BytePos
Data() As Byte
Position As Long
Buffer As Integer
BitPos As Integer
End Type
Private Stream(1
www.eeworm.com/read/292139/8375710
java sortedarray.java
//【例4.5】 设计一个已排序的对象数组类,实现查找算法。
public class SortedArray //泛型类
{
private Comparable table[]; //存放实现Comparable接口的对象
private int count;
public
www.eeworm.com/read/292139/8375740
java appletpara.java
//【例8.3】 Applet从HTML中获取参数。
import java.applet.Applet;
import java.awt.*;
public class AppletPara extends Applet
{
private String text;
private int size,color;
public void init(