代码搜索:ArrayList
找到约 10,000 项符合「ArrayList」的源代码
代码结果 10,000
www.eeworm.com/read/112784/15476900
java game.java
package game.adversary;
import java.util.Hashtable;
import java.util.ArrayList;
/**
* 硄ノ寄癸痴
www.eeworm.com/read/106071/15648103
java library.java
package chap1;
import java.util.*;
/**
* A helper class used by LibraryDOMCreator and LibraryJDOMCreator,
* presented as Examples 1-4 and 1-5 in Chapter 1.
*
* @author Eric M. Burke
*/
www.eeworm.com/read/392093/8363064
cs dictionary.cs
using System;
using System.Runtime.InteropServices;
using System.IO;
using System.Collections;
///
/// -- 字典类 ---
/// 训练库中所有的样本,提取样本库所有词汇,计算每个词汇的DF值。
/// 对给定的新样本,运用每个词汇的训练信息得到该新样本的文
www.eeworm.com/read/192142/8402405
txt 去掉list中的重复元素.txt
比如一个list如下:
[12,12,34,54,12,54,67,23,565,87,4,543,54,4]
怎么去掉它里面的重复元素?
注意,这里不是数组,是ArrayList或者List
Iterator it =list.iterator();
HashSet set = new HashSet();
while(it.ha
www.eeworm.com/read/291518/8411802
java rule.java
import java.util.*;
//用来放置规则的条件和结论的类,是该应用程序的主要数据结构
public class Rule {
String result; //结论为字符串类型
ArrayList cause; //条件被放置在列表类中
public Rule(Arra
www.eeworm.com/read/291518/8411808
java producerule.java
/**
* @author
*
*/
import java.util.*;
import java.io.*;
import java.util.regex.*;
//该类实现了从Rule.txt文件中读取规则
public class ProduceRule {
private ArrayList resultList;
pri
www.eeworm.com/read/390424/8465855
cs program.cs
using System;
using System.Collections.Generic;
using System.Text;
using System.Collections;
using System.Text.RegularExpressions;
namespace StandardApriori
{
class Program
{
www.eeworm.com/read/390274/8472953
java main.java
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package binaryrelations;
import java.util.*;
import java.io.*;
/**
*
* @author Administrator
*
www.eeworm.com/read/290185/8498517
java practical quiz 9.employeefileio.java
import java.util.*;
import java.io.*;
/**
* This class provides two file I/O methods for handling employee data.
*
* @author Neil
* @version 1.0.0
* @see Employee
*/
public class Emp