代码搜索:Wrox

找到约 2,023 项符合「Wrox」的源代码

代码结果 2,023
www.eeworm.com/read/185314/5238089

java iterable.java

package com.wrox.algorithms.iteration; /** * Generic interface for classes that provide an iterator. * */ public interface Iterable { /** * Obtains an iterator over all values. *
www.eeworm.com/read/185314/5238112

java bruteforcestringsearcher.java

package com.wrox.algorithms.ssearch; /** * A {@link StringSearcher} that uses a brute-force algorithm. * */ public class BruteForceStringSearcher implements StringSearcher { /** The pattern fo
www.eeworm.com/read/185314/5238119

java linearprobinghashtable.java

package com.wrox.algorithms.hashing; /** * A {@link Hashtable} that uses linear probing to store and locate values. * */ public class LinearProbingHashtable implements Hashtable { /** The valu
www.eeworm.com/read/185314/5238135

java callcountingcomparator.java

package com.wrox.algorithms.sorting; /** * A {@link Comparator} that count the calls made to {@link #compare(Object, Object)}. * */ public final class CallCountingComparator implements Comparator
www.eeworm.com/read/185314/5238144

java comparator.java

package com.wrox.algorithms.sorting; /** * A generice interface for comparing two object for order. * */ public interface Comparator { /** * Compares two objects for order. * *
www.eeworm.com/read/185314/5238182

java phoneticencoder.java

package com.wrox.algorithms.wmatch; /** * Generic interface for encoding strings according to various Soundex algorithms. * */ public interface PhoneticEncoder { /** * Encodes a string.
www.eeworm.com/read/185314/5238228

java treesettest.java

package com.wrox.algorithms.sets; /** * Test cases for {@link TreeSet}. * */ public class TreeSetTest extends AbstractSetTestCase { protected Set createSet() { return new TreeSet();
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/185314/5238230

java listsettest.java

package com.wrox.algorithms.sets; /** * Test cases for {@link ListSet}. * */ public class ListSetTest extends AbstractSetTestCase { protected Set createSet() { return new ListSet();
www.eeworm.com/read/185314/5238239

java fixedcomparator.java

package com.wrox.algorithms.sorting; /** * A {@link Comparator} that always returns the same result irrespective of the arguments. * */ public class FixedComparator implements Comparator { pr