代码搜索:Function
找到约 10,000 项符合「Function」的源代码
代码结果 10,000
www.eeworm.com/read/359992/10112677
java function.java
package structure;
/**
* 传输函数
* */
public abstract class Function {
abstract double getVal(double x);
}
www.eeworm.com/read/359992/10112691
class function.class
www.eeworm.com/read/359985/10112735
cpp function.cpp
//Function.cpp
Status InitStack(SqStack &S) // 构造一个空栈S
{
S.base=(SElemType *)malloc(STACK_INIT_SIZE*sizeof(SElemType));
if(!S.base)
exit(OVERFLOW);
S.top=S.base;
S.stacksize=STAC
www.eeworm.com/read/359984/10112750
cpp function.cpp
//Function.cpp
int min1(HuffmanTree t,int i) // 函数void select()调用
{
int j,flag;
unsigned int k=UINT_MAX;
for(j=1;j
www.eeworm.com/read/164059/10132802
asp function.asp
www.eeworm.com/read/359365/10153596
js function.js
//Encode
function EncodeUrl(str){
var strUrl=str.replace(/\r/g,"%0A");
strUrl=strUrl.replace(/\n/g,"%0D");
strUrl=strUrl.replace(/\"/g,"%22");
strUrl=strUrl.replace(/\'/g,"%27");
return st
www.eeworm.com/read/163502/10156860