代码搜索:HashSet
找到约 4,767 项符合「HashSet」的源代码
代码结果 4,767
www.eeworm.com/read/438077/7737037
java urldatabase.java
package crawler;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.LinkedHashSet;
public class UrlDatabase {
HashSet crawledList = new HashSet();
Linke
www.eeworm.com/read/204713/5029617
java vertex.java
package com.jopdesign.util;
import java.util.HashSet;
public class Vertex {
HashSet succ, pred;
Object userData;
public Vertex(Object data) {
userData = data;
succ = new HashSet();
pred =
www.eeworm.com/read/461881/1549422
java inthashset.java
import java.util.HashSet;
public class IntHashSet extends HashSet implements IntSet{
public boolean add(int a){
return add(new Integer(a)); //调用HashSet类的add(Object o)方法
}
public boole
www.eeworm.com/read/420779/2062390
java hashsettest.java
package set;
import java.util.HashSet;
import java.util.Iterator;
public class HashSetTest {
public static void main(String[] args) {
HashSet set = new HashSet();
//添加
set.add(34);
www.eeworm.com/read/370045/2787796
java hashsetadddemo.java
package chapter9;
import java.util.HashSet;
public class HashSetAddDemo {
public static void main(String[] args) {
HashSet hs = new HashSet();
hs.add("A");
hs.add("B
www.eeworm.com/read/442486/1759867
java testhashset.java
import java.util.Date;
import java.util.HashSet;
import java.util.Iterator;
public class TestHashSet{
public static void main(String[] args) {
HashSet h = new HashSet();
h.add("1st");
www.eeworm.com/read/185314/5238229
java hashsettest.java
package com.wrox.algorithms.sets;
/**
* Test cases for {@link HashSet}.
*
*/
public class HashSetTest extends AbstractSetTestCase {
protected Set createSet() {
return new HashSet();
www.eeworm.com/read/430343/1932686
java hashsettest.java
package connections;
import java.util.*;
public class HashSetTest {
/**
* @param args
*/
public static void main(String[] args) {
HashSet hs = new HashSet();
www.eeworm.com/read/147815/12519536
java hashsettest.java
/**
*Author Miracle
*Time 2005.11.24 00:28
*
*/
import java.util.*;
public class HashSetTest
{
public static void main(String [] args)
{
HashSet hs = new HashSet()
www.eeworm.com/read/394053/8250205
h dictionary.h
#ifndef _DICTIONARY_H_
#define _DICTIONARY_H_
#include
#include
#include
#include
#include
#include "hashset.h"
#include "hashset.