代码搜索:contiguous
找到约 282 项符合「contiguous」的源代码
代码结果 282
www.eeworm.com/read/128476/14294822
java maxsumtest.java
public final class MaxSumTest
{
/* START: Fig02_05.txt */
/**
* Cubic maximum contiguous subsequence sum algorithm.
*/
public static int maxSubSum1( int [ ] a )
www.eeworm.com/read/187031/8881637
changelog
0.8.6
- Don't exit on error reading source drive [Marius Hillenbrand]
- Fixed core dump when attribute list, but no MFT loaded [Marius Hillenbrand]
0.8.5
- Ported to Linux/FreeBSD
- Support for v
www.eeworm.com/read/281000/10273964
cpp fig02_05.cpp
/**
* Cubic maximum contiguous subsequence sum algorithm.
*/
int maxSubSum1( const vector & a )
{
int maxSum = 0;
for( int i = 0; i < a.size( ); i++ )
for( int j = i; j
www.eeworm.com/read/281000/10274129
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
www.eeworm.com/read/209149/15226723
txt 题目.txt
Given a two-dimensional array of positive and negative integers, a sub-rectangle is any contiguous sub-array of size 1*1 or greater located within the whole array. The sum of a rectangle is the sum of
www.eeworm.com/read/266379/11229286
cpp fig02_05.cpp
/**
* Cubic maximum contiguous subsequence sum algorithm.
*/
int maxSubSum1( const vector & a )
{
int maxSum = 0;
for( int i = 0; i < a.size( ); i++ )
for( int j = i; j
www.eeworm.com/read/266379/11229397
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
www.eeworm.com/read/449504/7502069
m recm_d.m
% PURPOSE: demonstrate the use of recm
% function to estimate a Bayesian
% error correction model using Random-walk
% averaging prior
% References: LeSage and Krivelyova (19
www.eeworm.com/read/157315/11720384
c eeprom.c
// Written by Ed Waugh 2004, www.edwaugh.co.uk
// for the original source, and hundreds more examples of PIC C code, see:
// http://www.microchipc.com/sourcecode/#eeprom
#use I2C(Master,sda=PIN_C4,s