代码搜索:Capacity
找到约 2,190 项符合「Capacity」的源代码
代码结果 2,190
www.eeworm.com/read/294317/8240696
cpp load.cpp
// greedy container loading
#include
void IndirectSort(int w[], int t[], int n)
{// Cluge to test when weights already in order.
for (int i=1; i
www.eeworm.com/read/294317/8240715
cpp firstfit.cpp
// First fit bin packing
#include
#include "winner.h"
int winner(int a[], int b, int c)
{// For a max winner tree.
if (a[b] >= a[c])
return b;
return c;
}
void FirstFi
www.eeworm.com/read/174006/9612423
txt 24.2.txt
Listing 24.2 Interface Declarations for a .NET Object
using System;
namespace DotNetObject
{
public interface IVehicle
{
int Wheels
{
get;
set;
}
}
public interface IAirVehicle : IVehicle
www.eeworm.com/read/370144/9615674
dpr p1941.dpr
{$A8,B-,C+,D+,E-,F-,G+,H+,I+,J-,K-,L+,M-,N+,O+,P+,Q-,R-,S-,T-,U-,V+,W-,X+,Y+,Z1}
{$MINSTACKSIZE $00004000}
{$MAXSTACKSIZE $00100000}
{$IMAGEBASE $00400000}
{$APPTYPE GUI}
{$R+,Q+,S+}
Const
www.eeworm.com/read/267278/11187742
m shannoncap.m
function cap = ShannonCap(bandwidth,SNR)
% This function caculates the Theoretical Information Capacity(Shannon limit)
% bandwidth: the occupied system bandwidth
% SNR: signal to noise ratio, dB.
www.eeworm.com/read/267247/11188779
h bc_def.h
/****************************************************************************
Device : AT90S2333
File name : BC_def.h
Ver nr. : 1.0
Description : This file has to
www.eeworm.com/read/147311/12567161
html putbytes.html
Putting Bytes into a ByteBuffer
(Java Developers Almanac Example)
www.eeworm.com/read/147311/12567179
html getbytes.html
Getting Bytes from a ByteBuffer
(Java Developers Almanac Example)
www.eeworm.com/read/334779/12573901
h d_ksack.h
#ifndef KNAPSACK_PROBLEM
#define KNAPSACK_PROBLEM
#include
#include
#include
#include "d_matrix.h"
using namespace std;
// specifies the size and value of
www.eeworm.com/read/334779/12574379
cpp prg15_5.cpp
// File: prg15_5.cpp
// the program demonstrates the dynamic programming solution
// to the knapsack problem. the vector itemList contains
// five items, each with a specified size and value. after