代码搜索:Capacity
找到约 2,190 项符合「Capacity」的源代码
代码结果 2,190
www.eeworm.com/read/294317/8241606
cpp bestfit.cpp
// best fit bin packing
#include
#include
#include "xcept.h"
#include "dbst.h"
class BinNode
{
friend void BestFitPack(int *, int, int);
friend ostream& operator
www.eeworm.com/read/173140/9670881
m ip_08_03.m
% MATLAB script for Illustrative Problem 3, Chapter 8.
echo on
a_db=[-20:0.2:20];
a=10.^(a_db/10);
for i=1:201
f(i)=quad('il3_8fun',a(i)-5,a(i)+5,1e-3,[],a(i));
g(i)=quad('il3_8fun',-a(i)-5,-a(i)+
www.eeworm.com/read/171829/9735375
cpp vector2.cpp
#ifdef __BCPLUSPLUS__
#include
#include
#else
#include
#include
#endif
using namespace std;
typedef vector INTVECTOR;
void main(void)
{
www.eeworm.com/read/366926/9792544
java objectfifo.java
public class ObjectFIFO extends Object {
private Object[] queue;
private int capacity;
private int size;
private int head;
private int tail;
public ObjectFIFO(int cap) {
capacity = (
www.eeworm.com/read/366926/9792587
java bytefifo.java
public class ByteFIFO extends Object {
private byte[] queue;
private int capacity;
private int size;
private int head;
private int tail;
public ByteFIFO(int cap) {
capacity = ( cap >
www.eeworm.com/read/366926/9792628
java bytefifo.java
public class ByteFIFO extends Object {
private byte[] queue;
private int capacity;
private int size;
private int head;
private int tail;
public ByteFIFO(int cap) {
capacity = ( cap >
www.eeworm.com/read/366926/9792630
java simpleobjectfifo.java
public class SimpleObjectFIFO extends Object {
private Object[] queue;
private int capacity;
private int size;
private int head;
private int tail;
public SimpleObjectFIFO(int cap) {
c
www.eeworm.com/read/366926/9792635
java objectfifo.java
public class ObjectFIFO extends Object {
private Object[] queue;
private int capacity;
private int size;
private int head;
private int tail;
public ObjectFIFO(int cap) {
capacity = (
www.eeworm.com/read/414455/11111503
m ip_08_03.m
% MATLAB script for Illustrative Problem 8.3.
clear
echo on
a_db=[-20:0.2:20];
a=10.^(a_db/10);
for i=1:201
f(i)=quad('il3_8fun',a(i)-5,a(i)+5,1e-3,[],a(i));
g(i)=quad('il3_8fun',-a(i)-5,-a
www.eeworm.com/read/268630/11129386
java queuearray.java
package dsa.adt;
import dsa.adt.Queue;
import dsa.exception.QueueEmptyException;
public class QueueArray implements Queue {
private static final int CAP = 7;//队列默认大小
private Object[] elemen