代码搜索:Approach

找到约 1,300 项符合「Approach」的源代码

代码结果 1,300
www.eeworm.com/read/117724/14907462

c mm_1.c

/* * mm-naive.c - The fastest, least memory-efficient malloc package. * * In this naive approach, a block is allocated by simply incrementing * the brk pointer. A block is pure payload. There a
www.eeworm.com/read/117724/14907464

c mm_1.c

/* * mm-naive.c - The fastest, least memory-efficient malloc package. * * In this naive approach, a block is allocated by simply incrementing * the brk pointer. A block is pure payload. There a
www.eeworm.com/read/215497/15059418

txt readme.txt

This CD contains the supplementary materials to the text book 'Digital Signal Processing: A Computer-Based Approach', 3rd Edition. by S.K. Mitra, ISBN 0073043869. -------------------------------
www.eeworm.com/read/209231/15225250

svn-base svmtrain2.m.svn-base

% SVMTRAIN2 - Trains a support vector machine in batch mode % using the L1 soft margin approach developed by % Diehl and Cauwenberghs for two-class problems. % % Syntax: [a
www.eeworm.com/read/209231/15225298

m svmtrain2.m

% SVMTRAIN2 - Trains a support vector machine in batch mode % using the L1 soft margin approach developed by % Diehl and Cauwenberghs for two-class problems. % % Syntax: [a
www.eeworm.com/read/208504/15246001

cpp qlearn-cmac-xwin.cpp

// Q-learning for mountain car problem /// Q-learning for mountain car problem // uses CMAC as a function approximator // follows approach described in Sutton/Singh papers // implements TD(lambda)
www.eeworm.com/read/451586/1660374

java htmlparser.java

package rabbit.html; /** This is a class that is used to parse a block of HTML code into * separate tokens. This parser uses a recursive descent approach. * * @author
www.eeworm.com/read/221054/4837889

design

While some other iconv(3) implementations - like FreeBSD iconv(3) - choose the "many small shared libraries" and dlopen(3) approach, this implementation packs everything into a single shared library.
www.eeworm.com/read/167133/5467882

java nativegraphics.java

package java.awt; import java.awt.image.ImageObserver; import kaffe.util.Ptr; /** * NativeGraphics - concrete, hidden implementation of abstract Graphics * * The approach of using an abstract Gra
www.eeworm.com/read/165570/5481313

java quicksort.java

public class QuickSort { /** Sort array keys using the recursive partition-exchange approach. */ public void quickSort(int[ ] keys) { quickSortHelper(keys, 0, keys.length - 1); } /** A