代码搜索:ordered

找到约 1,143 项符合「ordered」的源代码

代码结果 1,143
www.eeworm.com/read/238672/13869587

s random.s

# Random number generator # # This uses a 33-bit feedback shift register to generate a pseudo-randomly # ordered sequence of numbers which repeats in a cycle of length 2^33 - 1 # NOTE: randomseed
www.eeworm.com/read/126884/6011050

java colorlist.java

package org.trinet.util.graphics; import java.awt.*; /** * Extends class Color to add new colors and the concept of an ordered color list. Also, * controls the definition of certain general
www.eeworm.com/read/127767/14337430

txt e301. creating a varray type in an oracle database.txt

A VARRAY is a variable-length ordered list of values of one type. This example creates a VARRAY that can hold up to ten NUMBER values. try { Statement stmt = connection.createStatement(
www.eeworm.com/read/228533/14380247

c orddithr.c

/* Ordered Dithering by Stephen Hawley from "Graphics Gems", Academic Press, 1990 */ /* Program to generate dithering matrices. * written by Jim Blandy, Oberlin College, jimb@occs.oberlin.edu * Gif
www.eeworm.com/read/116272/14981271

cc alg1.cc

/* heap-lookahead Author: Kendall Willets (kendall@willets.org, http://willets.org ) This is a variant of a simple ordered vector merge of subsets, using a heap to hold iterators for each transac
www.eeworm.com/read/212063/15166305

cpp binary1.cpp

Error_code binary_search_1 (const Ordered_list &the_list, const Key &target, int &position) /* Post: If a Record in the_list has Key equal to target, then
www.eeworm.com/read/12865/249963

s random.s

; Random number generator ; ; This uses a 33-bit feedback shift register to generate a pseudo-randomly ; ordered sequence of numbers which repeats in a cycle of length 2^33 - 1 ; NOTE: randomseed
www.eeworm.com/read/12870/258394

s random.s

; Random number generator ; ; This uses a 33-bit feedback shift register to generate a pseudo-randomly ; ordered sequence of numbers which repeats in a cycle of length 2^33 - 1 ; NOTE: randomseed
www.eeworm.com/read/456564/1605084

cc boundarypoints.cc

/* * BoundaryPoints.cc * * the ordered set of points on the boundary of an object * */ #include "BoundaryPoints.h" #include "Profile.h" #include "SplineMatrix.h" #include "text_output.h" #inclu
www.eeworm.com/read/249895/4444795

java ipersistentlist.java

package org.garret.perst; import java.util.List; import java.util.RandomAccess; /** * Interface for ordered collection (sequence). * The user can access elements by their integer index (po