代码搜索:移相法
找到约 10,000 项符合「移相法」的源代码
代码结果 10,000
www.eeworm.com/read/110672/15527579
cpp binaryinsertsort.cpp
//二分法插入排序
#include "iostream.h"
#include "stdlib.h"
#include "string.h"
#include "Compare.h"
#include "BinaryInsertSorter.h"
// 设定随即函数的种子
inline void Randomize()
{ srand(1); }
//返回一个
www.eeworm.com/read/109555/15554352
h 10-1.h
#ifndef ARRAY_BASED_SORTING_FUNCTIONS
#define ARRAY_BASED_SORTING_FUNCTIONS
//用直接插入排序法对数组A中的元素进行升序排列
template
void InsertionSort(T A[], int n)
{
int i, j;
T temp;
// 将
www.eeworm.com/read/109554/15554473
h 10_1.h
#ifndef ARRAY_BASED_SORTING_FUNCTIONS
#define ARRAY_BASED_SORTING_FUNCTIONS
//用直接插入排序法对数组A中的元素进行升序排列
template
void InsertionSort(T A[], int n)
{
int i, j;
T temp;
// 将
www.eeworm.com/read/109431/15557723
cpp 33.cpp
// 33.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include
#include
#include
//追赶法解三对角线方程组
void main()
{
int N,i;
www.eeworm.com/read/109343/15558696
txt fq.txt
fq
函数名: qsort
功 能: 使用快速排序例程进行排序
用 法: void qsort(void *base, int nelem, int width, int (*fcmp)());
程序例:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
i
www.eeworm.com/read/109003/15568849
c onedim.c
/* 使用选择法排序 */
# include
void main()
{
int i, j, min, temp;
/* 定义一个整型得一维数组 */
int array[10];
/* 输入数据 */
printf("Please input ten integer: \n");
for(i=0; i
www.eeworm.com/read/104043/15712063
cpp fem2.cpp
#include
#include
#include
int Gauss(double a[],double b[],int n); //全选主元高斯消去法
/*double GaussIntegral(int n,int js[], //计算多重积分的高斯方法
double(*fn)(int n,d
www.eeworm.com/read/103612/15728016
inl linearequation.inl
//LinearEquation.inl 线性方程(组)求解函数(方法)定义
// Ver 1.0.0.0
// 版权所有(C) 何渝, 2002
// 最后修改: 2002.5.31
#ifndef _LINEAREQUATION_INL
#define _LINEAREQUATION_INL
//全选主元高斯消去法
template
int L