代码搜索:Capacity
找到约 2,190 项符合「Capacity」的源代码
代码结果 2,190
www.eeworm.com/read/253867/12180293
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/251176/12359851
cpp ep11_3.cpp
/*11.3 编程测试顺序容器矢量(vector)的主要功能名和使用方法。(参考附录C,下同)*/
#include
#include
#include
#include
using namespace std;
int main(){
ostream_iteratoroutput(co
www.eeworm.com/read/148785/12426508
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/232312/14198817
c ide-disk.c
/*
* linux/drivers/ide/ide-disk.c Version 1.18 Mar 05, 2003
*
* Copyright (C) 1994-1998 Linus Torvalds & authors (see below)
* Copyright (C) 1998-2002 Linux ATA Development
* Andre Hedric
www.eeworm.com/read/231819/14218663
cpp ex10_12a.cpp
/* Code for exercise 10.12.
|
| "C++ Solutions--Companion to The C++ Programming Language, Third Edition"
| by David Vandevoorde; Addison-Wesley 1998; ISBN 0-201-30965-3.
|
| Permission to use,
www.eeworm.com/read/231345/14238316
m waterfill_block1.m
%Block Diagonal Waterfilling
%Authors: Nihar Jindal, Wonjong Rhee, Sriram Vishwanath, Syed Jafar, Andrea
%Goldsmith
%Date: 6/20/05
function [ Ex] = waterfill_block(H, P);
%Returns optimal covariance
www.eeworm.com/read/231345/14238322
m waterfill_block.m
%Block Diagonal Waterfilling
%Authors: Nihar Jindal, Wonjong Rhee, Sriram Vishwanath, Syed Jafar, Andrea
%Goldsmith
%Date: 6/20/05
function [Ex] = waterfill_block(H, P);
%Returns optimal covariance
www.eeworm.com/read/129131/14263416
java fig1-4.java
import java.io.*;
import java.util.Vector;
class Node {
Node(String s, int a) {
name = s;
age = a;
}
Node() {
this("",0);
}
public boolean equal
www.eeworm.com/read/230855/14271958
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/128466/14295711
cpp chapter6-6.cpp
//文件名:CHAPTER6-6.cpp
#pragma warning(disable:4786)
#include
#include
using namespace std ;
typedef vector INTVECTOR;
void main()
{
INTVECTOR thevector;
thevec