代码搜索:Capacity

找到约 2,190 项符合「Capacity」的源代码

代码结果 2,190
www.eeworm.com/read/289731/8532319

h istack.h

#ifndef ISTACK_H #define ISTACK_H #include using std::vector; #include "stckexcp.h" class iStack { public: iStack( int capacity ) : _stack( capacity ), _to
www.eeworm.com/read/289241/8565746

h stack.h

// stack.h: interface for the list class. // ////////////////////////////////////////////////////////////////////// #ifndef HEADFILE_STACK #define HEADFILE_STACK #include // 栈操作
www.eeworm.com/read/288910/8595057

h istack.h

#ifndef ISTACK_H #define ISTACK_H #include using std::vector; #include "stckexcp.h" class iStack { public: iStack( int capacity ) : _stack( capacity ), _to
www.eeworm.com/read/288902/8595958

h k9sxx08.h

#ifndef __K9Sxx08_H__ #define __K9Sxx08_H__ void K9Sxx08_Menu(void); static const struct { char *name; U32 id; U16 pages; U16 blocks; U16 capacity; } smc_info[] = { {"K9S3208", 0
www.eeworm.com/read/431770/8655314

asv tu2_15.asv

SNR=0:1:10;%SNR is signal-to-noise ratio in dBs output1=log2; output2=capacity(2,0,0.5,1,0.99,'erg',SNR); plot(SNR,output1,'b-^',SNR,output2,'k-^'); %plot routines follow. These will change depend
www.eeworm.com/read/431770/8655346

m tu2_15.m

SNR=0:1:20;%SNR is signal-to-noise ratio in dBs output1=2*log2(1+SNR/2); output2=log2(1+2*SNR); plot(SNR,output1,'b-^',SNR,output2,'k-^'); %plot routines follow. These will change depending upon t
www.eeworm.com/read/431190/8703675

java algthread.java

/* AlgThread.java */ import java.awt.*; import java.io.*; import java.net.*; import java.util.*; public class AlgThread extends Thread { int capacity = 7; static String[] dataSets = {"Queue
www.eeworm.com/read/429715/8793282

java arraystack.java

package stackqueue; public class ArrayStack{ public ArrayStack(){ theArray = (int[]) new int[DEFAULT_CAPACITY]; topOfStack = -1; } public boolean isEmpty(){ return topOfStack ==
www.eeworm.com/read/285975/8798266

028_prob ch06.028_prob

############################################################################## ## Code fragment (NOT RECOMMENDED) from Chapter 6 of "Perl Best Practices" ## ## Copyright (c) O'Reilly & Associates
www.eeworm.com/read/285975/8798360

029_best ch06.029_best

############################################################################## ## Code fragment (Recommended) from Chapter 6 of "Perl Best Practices" ## ## Copyright (c) O'Reilly & Associates