代码搜索:如何学习 FREE?
找到约 10,000 项符合「如何学习 FREE?」的源代码
代码结果 10,000
www.eeworm.com/read/369090/9662734
c edit10.c
freeall(struct btree *tree){
if(tree->left!=NULL)freeall(tree->left);
if(tree->right!=NULL)freeall(tree->right);
free(tree);
}
www.eeworm.com/read/173137/9671174
c test16.c
/*
* mpatrol
* A library for controlling and tracing dynamic memory allocations.
* Copyright (C) 1997-2002 Graeme S. Roy
*
* This library is free software; you can redistr
www.eeworm.com/read/173137/9671195
c test1.c
/*
* mpatrol
* A library for controlling and tracing dynamic memory allocations.
* Copyright (C) 1997-2002 Graeme S. Roy
*
* This library is free software; you can redistr
www.eeworm.com/read/368366/9699817
h gf.h
/*
ecc Version 1.2 by Paul Flaherty (paulf@stanford.edu)
Copyright (C) 1993 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it und
www.eeworm.com/read/368366/9699824
h ecc.h
/*
ecc Version 1.2 by Paul Flaherty (paulf@stanford.edu)
Copyright (C) 1993 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it und
www.eeworm.com/read/368137/9710369
cpp vec-opnew.cpp
/*
* This file contains code from "C++ Primer, Fourth Edition", by Stanley B.
* Lippman, Jose Lajoie, and Barbara E. Moo, and is covered under the
* copyright and warranty notices given in that
www.eeworm.com/read/171592/9745798
inc rqbcode.inc
; MMURTL Operating System Source Code
; Copyright 1991,1992,1993, Richard A. Burgess
; ALL RIGHTS RESERVED
; Version x0.8
;=================================================================
www.eeworm.com/read/367444/9747748
c pr_loqo.c
/*
* File: pr_loqo.c
* Purpose: solves quadratic programming problem for pattern recognition
* for support vectors
*
* Author: Alex J. Smola
* Created: 10/14/97
www.eeworm.com/read/171470/9753195
c davbkup.c
/* Copyright (c) 1995-2004 Intel Corporation */
/* Intel Confidential */
/* ###########################################################################
### BKUP
###
###
www.eeworm.com/read/366932/9791544
c 10gear.c
#include "math.h"
#include "stdlib.h"
#include "4rinv.c"
int gear(a,b,hmin,hmax,h,eps,n,y0,k,t,z,ss,f)
void (*f)(),(*ss)();
int n,k;
double a,b,hmin,hmax,h,eps,y0[],t[],z[];