代码搜索:Wrox

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

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

java stringmatch.java

package com.wrox.algorithms.ssearch; /** * Represents a pattern match within some text. * */ public class StringMatch { /** The pattern that was searched for. */ private final CharSequence
www.eeworm.com/read/185314/5238111

java callcountingcharsequence.java

package com.wrox.algorithms.ssearch; /** * A {@link CharSequence} that decorates another to count the number of times {@link #charAt(int)} is called. * */ public class CallCountingCharSequence imp
www.eeworm.com/read/185314/5238115

java hashtable.java

package com.wrox.algorithms.hashing; /** * Generic interface for hash tables. * */ public interface Hashtable { /** * Adds a value to the hash table. * * @param value The value
www.eeworm.com/read/185314/5238133

java reversecomparator.java

package com.wrox.algorithms.sorting; /** * A {@link Comparator} that reverses the order of another, underlying, {@link Comparator}. Useful for sorting in * reverse order without needing to create t
www.eeworm.com/read/185314/5238177

java queue.java

package com.wrox.algorithms.queues; /** * A generic interface for queues. * */ public interface Queue { /** * Stores a value in the queue. The size of the queue will increase by one.
www.eeworm.com/read/185314/5238198

java singletoniteratortest.java

package com.wrox.algorithms.iteration; import junit.framework.TestCase; /** * Test cases for {@link SingletonIterator}. * */ public class SingletonIteratorTest extends TestCase { public void
www.eeworm.com/read/185314/5238199

java abstractpowercalculatortestcase.java

package com.wrox.algorithms.iteration; import junit.framework.TestCase; /** * Abstract base class for testing implementations of {@link PowerCalculator}. * */ public abstract class AbstractPowerC
www.eeworm.com/read/185314/5238200

java xypointcomparatortest.java

package com.wrox.algorithms.geometry; import junit.framework.TestCase; /** * Test cases for {@link XYPointComparator}. * */ public class XYPointComparatorTest extends TestCase { private final
www.eeworm.com/read/185314/5238217

java abstractstringsearchertestcase.java

package com.wrox.algorithms.ssearch; import junit.framework.TestCase; /** * Abstract base class for testing implementations of {@link StringMatch}. * */ public abstract class AbstractStringSearch
www.eeworm.com/read/185314/5238222

java abstractprimenumbergeneratortestcase.java

package com.wrox.algorithms.hashing; import junit.framework.TestCase; /** * Abstract base class for tesing implementations of {@link PrimeNumberGenerator}. * */ public abstract class AbstractPrim