代码搜索:Capacity
找到约 2,190 项符合「Capacity」的源代码
代码结果 2,190
www.eeworm.com/read/389288/8535897
c quicksort.c
#include "quicksort.h"
#include
#include "fatal.h"
#define MinPQSize (10)
#define Cutoff ( 3 )
struct SortStruct
{
int Capacity;
int Size;
ElementType *E
www.eeworm.com/read/429715/8793286
java arrayqueue.java
package stackqueue;
public class ArrayQueue {
private int[] queue;
private int currentSize;
private int front;
private int back;
private static final int DEFAULT_CAPACITY = 10;
private
www.eeworm.com/read/280899/10280408
c gei82543rcvsnd.c
#include "gei82543Lib.h"
LOCAL void gei82543RxDesUpdate (END_DEVICE *);
extern void * sysVirtToPhys(void *virtAddr);
#define GEI_CAPACITY_LIMIT 5
/******************************
www.eeworm.com/read/165343/7143907
m plotcbawgn2.m
% Todd K. Moon, September 30, 2003
% Plot the capacity for a Gaussian and Binary AWGN channel
% Copyright 2004 by Todd K. Moon
% Permission is granted to use this program/data
% for educational/rese
www.eeworm.com/read/223481/14639226
m calculateminsnr.m
function [sim_param, sim_state] = CalculateMinSNR( sim_param, sim_state )
% CalculateThroughput determines that capacity of FSK under bandwidth
% constraints, by returning min Eb/No (dB) as a func
www.eeworm.com/read/457459/1597187
java fasthashmap.java
package org.sunflow.util;
import java.util.Iterator;
/**
* Fast hash map implementation which uses array storage along with quadratic
* probing to resolve collisions. The capacity is doubled
www.eeworm.com/read/180822/5280871
m bwcapacityread.m
function [sim_param, sim_state] = BwCapacityRead( sim_param )
% BwCapacityRead determines that capacity of FSK under bandwidth
% constraints, by returning min Eb/No (dB) as a function of h.
%
% Th
www.eeworm.com/read/327857/3452669
java edgestack.java
package twf.weightedgraph.common;
import twf.weightedgraph.Edge;
public class EdgeStack {
private int capacity, cur;
private Edge[]edge;
public EdgeStack(int maxN) {
this.capac
www.eeworm.com/read/303591/13812027
txt input.txt
Some years ago I took on an assignment in a southern county to work with people on public welfare. What I wanted to do was show that everybody has the capacity to be self-sufficient and all we have to
www.eeworm.com/read/485355/6559723
java buffertest2.java
class BufferTest2 {
public static void main(String[] args) {
// 自动产生
StringBuffer buffer= new StringBuffer("How are you?");
//display the information of capacity.
System.out.println(