代码搜索结果
找到约 10,000 项符合
Algorithm 的代码
sha1.c
/* sha1.c : Implementation of the Secure Hash Algorithm */
/* SHA: NIST's Secure Hash Algorithm */
/* This version written November 2000 by David Ireland of
DI Management Services Pty Limited
dijkstrasf.txt
% dijkstra algorithm code program%
% the shortest path length algorithm
function [path,short_distance]=ShortPath_Dijkstra(Input_weight,start,endpoint)
% Input parameters:
% Input_weight-------the
bvls.m
%
% x=bvls(A,b,l,u)
%
% Solves a bounded variables least squares problem
%
% min || Ax-b ||
% l
@psc_readme_7064_10.txt
Title: CPU Algorithm(SRTF)
Description: This is an algorithm for CPU scheduling named SRTF(Shortest Remaining Time First) or preemptive SJF(Shortest Job First)
This file came from Planet-Source-Code
k_means_cluster
k-means Cluster Anlysis Algorithm.
Description : The package aims at providing an implementation of k-means Clustering Algorithm in Java. The package does not provide for any UI and it is up to the u
assrule.h
#ifndef ASSRULE_H
#define ASSRULE_H
#include
#include
#include
#include
#include
#include
#include "boost/algorithm/string.hpp"
permutationga.m
%PROGRAM 5: PERMUTATION GENETIC ALGORITHM置换遗传算法
% Genetic Algorithm for permuation problems
%
% minimizes the objective function designated in ff
clear
global iga x y
% Haupt & Haupt
% 2003
bfgs.m
% Program: bfgs.m
% Title: Quasi_Newton BFGS algorithm
% Description: Implements the quasi-Newton algorithm
% with the Broyden-Fletcher-Goldfarb-Shanno (BFGS)
% updating formula described in Algor
bsearch.c
/* @(#)bsearch.c 1.5 */
/*LINTLIBRARY*/
/*
* Binary search algorithm, generalized from Knuth (6.2.1) Algorithm B.
*
*/
typedef char *POINTER;
POINTER
bsearch(key, base, nel, width, compar)
POINTE
rmd160.c
// RIPEMD-160 written and placed in the public domain by Wei Dai
/*
* This code implements the MD4 message-digest algorithm.
* The algorithm is due to Ron Rivest. This code was
* written by