代码搜索:Capacity
找到约 2,190 项符合「Capacity」的源代码
代码结果 2,190
www.eeworm.com/read/203856/15350844
m waterfilling_alg.m
function [Capacity PowerAllo] = WaterFilling_alg(PtotA,ChA,B,N0);
%
% WaterFilling in Optimising the Capacity
%===============
% Initialization
%===============
ChA = ChA + eps;
NA = length(ChA
www.eeworm.com/read/201477/15407400
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/201477/15407555
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/103722/15725167
java utilundoer.java
package util2;
import javax.swing.undo.*;
import java.util.*;
import util3.*;
import util4.*;
public class UtilUndoer extends UndoManager implements java.io.Serializable
{
int index = -1;
int li
www.eeworm.com/read/100398/15874770
txt strtst.txt
Begin test
testing test program - should report error
... doing test 1
Error at test 1:
prstr: just testing - 1 [0]: should be just testing - 2 [0]
preliminary tests
... doing test 2
test strin
www.eeworm.com/read/415064/11084634
c test_usb.c
#include "SystemHeader.h"
//#include ".\FileSys\ufat.h" // 文件系统API定义
//#include ".\FileSys\vfs.h" // UFAT文件系统API定义
extern int sprintf(void *, const char *, ...);
extern int DiskB_Initial(voi
www.eeworm.com/read/391678/8391380
txt chap6-9.txt
// 程序6-9
public class TestCapacity{
public static void main(String args[ ]) {
String s="Java";
StringBuffer str=new StringBuffer(s);
System.out.println("Length = "
www.eeworm.com/read/390651/8455125
cc oracle.cc
/* $Id: oracle.cc,v 1.7 2005/08/02 19:35:49 jonathan Exp $
* Jonathan Ledlie, Harvard University.
* Copyright 2005. All rights reserved.
*/
#include
#include "lb.h"
void oracleAllocate
www.eeworm.com/read/289241/8565771
cpp stack.cpp
// stack.cpp: implementation of the list class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "stack.h"
#include
///////