代码搜索:Capacity

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

代码结果 2,190
www.eeworm.com/read/419490/10864398

cpp fcq.cpp

#include "FCQ.H" #include using namespace std; FixCapQue:: FixCapQue (int cap) { capacity = cap; currentNum = 0; que = new float[capacity]; int i; for (i=0;i
www.eeworm.com/read/273406/10917751

java rosterupdate.java

//:RosterUpdate.java //package g3ds.joop.ch5; import java.util.Vector; public class RosterUpdate{ protected int capacity; protected Vector students; public RosterUpdate(int max) {
www.eeworm.com/read/273406/10917848

java roster.java

//:Roster.java //package g3ds.joop.ch5; import java.util.Vector; public class Roster { //记录最多登记人数 protected int capacity; protected Vector students; public Roster(int max) { capa
www.eeworm.com/read/273406/10917851

java rosterfinal.java

//:RosterFinal.java //package g3ds.joop.ch5; import java.util.Vector; public class RosterFinal{ protected int capacity; protected Vector students; public RosterFinal(int max) { cap
www.eeworm.com/read/272848/10940972

h arraystack.h

// array implementation of a stack // derives from the ADT stack #ifndef arrayStack_ #define arrayStack_ #include "stack.h" #include "myExceptions.h" #include "changeLength1D.h" #include
www.eeworm.com/read/272848/10941021

cpp recursivebtloading1.cpp

// first recursive backtracking code to load containers onto 2 ships // code finds weight of max loading for first ship only #include using namespace std; // global variables int
www.eeworm.com/read/272848/10941233

cpp recursivebtloading2.cpp

// refined recursive backtracking code for container loading // onto two ships // code finds weight of max loading for first ship only #include using namespace std; // global v
www.eeworm.com/read/272848/10941325

cpp iterativebtloading.cpp

// iterative code for container loading by backtracking #include #include using namespace std; int maxLoading(int *weight, int numberOfContainers, int capacity,
www.eeworm.com/read/418199/10959380

vbs list virtual server accountant information.vbs

On Error Resume Next Set objVS = CreateObject("VirtualServer.Application") set colVMs = objVS.VirtualMachines For Each objVM in colVMS Set colAccountants = objVM.Accountant Wscrip
www.eeworm.com/read/417821/10975019

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 = (