代码搜索:Collection
找到约 10,000 项符合「Collection」的源代码
代码结果 10,000
www.eeworm.com/read/471356/6890707
java main.java
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package regular;
import java.util.*;
//import java.util.Collection;
//import java.util.Scanner;
//
www.eeworm.com/read/415313/11076739
m preprocessing.m
% Preprocessing: preprocess the data
%
% Parameters:
% D: entire data collection
%
% Output parameters:
% X: features
% Y: labels
% orgY: original labels
% num_data: number of data
% num_fea
www.eeworm.com/read/266684/11215683
java arraylisttest.java
import java.util.*;
class ArrayListTest
{
public static void printElements(Collection c)
{
Iterator it=c.iterator();
while(it.hasNext())
{
System.out.println(it.next());
}
}
www.eeworm.com/read/133539/14036605
readme
This directory contains a collection of test programs and a Perl
script, runtests.pl, that runs them all in an orderly fashion.
runtests.pl considers a test to have failed if it either:
(a) sees the
www.eeworm.com/read/201179/15414852
readme-old
drcomsuite
Version 0.0
OVERVIEW
drcomsuite is a collection of programs for getting online with an ISP that
uses the Dr.COM 2133 Broadband Remote Access Server for its billing/access
system.
COPYRIG
www.eeworm.com/read/111083/15519045
c tree_add.c
/* Binary tree implementation of a collection */
static void AddToTree( Node *t, Node new ) {
Node base;
base = *t;
/* If it's a null tree, just add it here */
if ( base == NULL ) {
*t = new;
www.eeworm.com/read/105051/15679176
c unzip.c
/*
* unzip.c
*
* This is a collection of several routines from gzip-1.0.3
* adapted for Linux.
*
* malloc by Hannu Savolainen 1993 and Matthias Urlichs 1994
* puts by Nick Holloway 1993, bett
www.eeworm.com/read/104052/15711645
makefile
#
# Makefile Main Makefile for the net-tools Package
#
# NET-TOOLS A collection of programs that form the base set of the
# NET-3 Networking Distribution for the LINUX operating
# system.
#
# Versio
www.eeworm.com/read/104052/15711648
c masq_info.c
/*
* lib/masq_info.c This file contains a the functio masq_info
* to print a table of current masquerade connections.
*
* NET-LIB A collection of functions used from t
www.eeworm.com/read/102394/15783276
texi intro.texi
@cindex license of GSL
@cindex GNU General Public License
The GNU Scientific Library (GSL) is a collection of routines for
numerical computing. The routines have been written from scratch in C,
and p