代码搜索:Subsequence

找到约 105 项符合「Subsequence」的源代码

代码结果 105
www.eeworm.com/read/240162/4583054

c overload36.c

// { dg-do run } // Test for subsequence checking in overload resolution. class foo { public: void operator
www.eeworm.com/read/233448/4675873

c overload36.c

// { dg-do run } // Test for subsequence checking in overload resolution. class foo { public: void operator
www.eeworm.com/read/190666/5175664

c overload36.c

// Test for subsequence checking in overload resolution. class foo { public: void operator
www.eeworm.com/read/340665/3276318

c overload36.c

// Test for subsequence checking in overload resolution. class foo { public: void operator
www.eeworm.com/read/295367/3910916

c maxsum.c

/* Copyright (C) 1999 Lucent Technologies */ /* From 'Programming Pearls' by Jon Bentley */ /* maxsum.c -- time algs for maximum-sum subsequence * Input: algnum, n * Output: algnum, n, answer,
www.eeworm.com/read/440906/1777950

c overload36.c

// Test for subsequence checking in overload resolution. class foo { public: void operator
www.eeworm.com/read/366702/2871921

c overload36.c

// { dg-do run } // Test for subsequence checking in overload resolution. class foo { public: void operator
www.eeworm.com/read/233815/14133868

m p_spectrum_fast.m

function [result, K] = p_spectrum_fast(s,t,p) %P_SPECTRUM_FAST % -Finds the contiguous subsequence match count between strings s and t % by using a dynamic programming implementation, %
www.eeworm.com/read/216502/4891082

test

.LP hoboken harrison newark roseville avenue grove street .[ Aho Ullman subsequence 1976 .] east orange brick church orange highland avenue mountain station south orange maplewood millburn short hills
www.eeworm.com/read/293917/3927467

cpp fig02_06.cpp

/** * Quadratic maximum contiguous subsequence sum algorithm. */ int maxSubSum2( const vector & a ) { int maxSum = 0; for( int i = 0; i < a.size( ); i++ ) { int th