代码搜索:插值算法

找到约 10,000 项符合「插值算法」的源代码

代码结果 10,000
www.eeworm.com/read/341978/12049476

h interpolate.h

////////////////////////////////////////////////////////////////////// // Interpolate.h // // 插值类 CInterpolate 的声明接口 // // 周长发编制, 2002/8 /////////////////////////////////////////////////////////
www.eeworm.com/read/341978/12049543

h interpolate.h

////////////////////////////////////////////////////////////////////// // Interpolate.h // // 插值类 CInterpolate 的声明接口 // // 周长发编制, 2002/8 /////////////////////////////////////////////////////////
www.eeworm.com/read/249290/12512651

h interpolate.h

////////////////////////////////////////////////////////////////////// // Interpolate.h // // 插值类 CInterpolate 的声明接口 // // 皮敏捷编制, 2006/5 /////////////////////////////////////////////////////////
www.eeworm.com/read/249290/12512663

h interpolate.h

////////////////////////////////////////////////////////////////////// // Interpolate.h // // 插值类 CInterpolate 的声明接口 // // 皮敏捷编制, 2006/5 /////////////////////////////////////////////////////////
www.eeworm.com/read/249290/12512714

h interpolate.h

////////////////////////////////////////////////////////////////////// // Interpolate.h // // 插值类 CInterpolate 的声明接口 // // 周长发编制, 2002/8 /////////////////////////////////////////////////////////
www.eeworm.com/read/249290/12512822

h interpolate.h

////////////////////////////////////////////////////////////////////// // Interpolate.h // // 插值类 CInterpolate 的声明接口 // // 皮敏捷编制, 2006/5 /////////////////////////////////////////////////////////
www.eeworm.com/read/107832/15599090

h interpolate.h

////////////////////////////////////////////////////////////////////// // Interpolate.h // // 插值类 CInterpolate 的声明接口 // // 周长发编制, 2002/8 /////////////////////////////////////////////////////////
www.eeworm.com/read/104090/15710337

h interpolate.h

////////////////////////////////////////////////////////////////////// // Interpolate.h // // 插值类 CInterpolate 的声明接口 // // 周长发编制, 2002/8 /////////////////////////////////////////////////////////
www.eeworm.com/read/367982/9721453

c 插数.c

题目:有一个已经排好序的数组。现输入一个数,要求按原来的规律将它插入数组中。 1. 程序分析:首先判断此数是否大于最后一个数,然后再考虑插入中间的数的情况,插入后      此元素之后的数,依次后移一个位置。 2.程序源代码: main() { int a[11]={1,4,6,9,13,16,19,28,40,100}; int temp1,temp2,number,end,i, ...