代码搜索:移相法
找到约 10,000 项符合「移相法」的源代码
代码结果 10,000
www.eeworm.com/read/286417/4039517
java sample3_7.java
/*
* 示例程序Sample3_7: Matrix类的求行列式值的全选主元高斯消去法
*/
package javaalgorithm.sample;
import javaalgorithm.algorithm.Matrix;
public class Sample3_7
{
public static void main(String[] args)
{
www.eeworm.com/read/286417/4039523
java sample3_3.java
/*
* 示例程序Sample3_3: Matrix类的实矩阵求逆的全选主元高斯-约当法
*/
package javaalgorithm.sample;
import javaalgorithm.algorithm.Matrix;
public class Sample3_3
{
public static void main(String[] args)
{
www.eeworm.com/read/277819/4150536
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/277819/4150670
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/392094/2516103
cs sample3_18.cs
/*
* 示例程序Sample3_18: Matrix类的求实对称矩阵特征值与特征向量的雅可比法
*/
using System;
using CSharpAlgorithm.Algorithm;
namespace CSharpAlgorithm.Sample
{
class Class1
{
[STAThread]
static void Main(
www.eeworm.com/read/392094/2516116
cs sample4_10.cs
/*
* 示例程序Sample4_10: LEquations类的求解大型稀疏方程组的全选主元高斯-约去消去法
*/
using System;
using CSharpAlgorithm.Algorithm;
namespace CSharpAlgorithm.Sample
{
class Class1
{
[STAThread]
static voi
www.eeworm.com/read/392094/2516119
cs sample4_6.cs
/*
* 示例程序Sample4_6: LEquations类的求解三对角线方程组的追赶法
*/
using System;
using CSharpAlgorithm.Algorithm;
namespace CSharpAlgorithm.Sample
{
class Class1
{
[STAThread]
static void Main(str
www.eeworm.com/read/392094/2516153
cs sample4_5.cs
/*
* 示例程序Sample4_5: LEquations类的复系数方程组的全选主元高斯-约当消去法
*/
using System;
using CSharpAlgorithm.Algorithm;
namespace CSharpAlgorithm.Sample
{
class Class1
{
[STAThread]
static void Ma
www.eeworm.com/read/359352/2978724
txt 例5.3.txt
例5.3 编写程序,用起泡法对10个数排序(按由小到大顺序)。
#include
using namespace std;
int main( )
{
int a[11];
int i,j,t;
cout
www.eeworm.com/read/254498/4381971
cs sample3_18.cs
/*
* 示例程序Sample3_18: Matrix类的求实对称矩阵特征值与特征向量的雅可比法
*/
using System;
using CSharpAlgorithm.Algorithm;
namespace CSharpAlgorithm.Sample
{
class Class1
{
[STAThread]
static void Main(