代码搜索:移相法
找到约 10,000 项符合「移相法」的源代码
代码结果 10,000
www.eeworm.com/read/298315/3868799
txt 279.txt
「夯」是击打使之密实的动作。以两片侧板围夹土壤,每隔数十公分夯实一次,即古老的筑墙技术「版筑法」。墙体的水平线为夯筑痕迹。
www.eeworm.com/read/298155/3873677
dat asslandat9b.dat
说明: 如果对堆栈中的原FLAG内容进行修改,如对TF等标志位进行修改,然后再弹回标志位寄存器FLAG.这是通过指令 ---- 修改TF标志的唯一方法.
www.eeworm.com/read/292034/3960267
h hookapi_iat.h
// HookApi_IAT.h — 使用IAT法写的一个HOOK API的类.
//
#ifndef _HOOK_API_IAT
#define _HOOK_API_IAT
class CHookApi_IAT
{
public:
CHookApi_IAT();
virtual ~CHookApi_IAT();
public:
PROC m_lpOldFu
www.eeworm.com/read/292034/3960292
h hookapi_jmp.h
// HookApi_JMP.h:使用JMP法写的一个HOOK API的类.
//
#ifndef _HOOK_API_JMP
#define _HOOK_API_JMP
// 直接跳转类.
class CHookApi_Jmp
{
public:
CHookApi_Jmp();
virtual ~CHookApi_Jmp();
public:
void
www.eeworm.com/read/288165/4009409
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/286417/4039448
java sample5_2.java
/*
* 示例程序Sample5_2: NLEquations类的求非线性方程一个实根的牛顿法
*/
package javaalgorithm.sample;
import javaalgorithm.algorithm.Real;
import javaalgorithm.algorithm.NLEquations;
public class Sample5_2
{
www.eeworm.com/read/286417/4039451
java sample4_5.java
/*
* 示例程序Sample4_5: LEquations类的复系数方程组的全选主元高斯-约当消去法
*/
package javaalgorithm.sample;
import javaalgorithm.algorithm.Complex;
import javaalgorithm.algorithm.Matrix;
import javaalgorithm.algor
www.eeworm.com/read/286417/4039465
java sample4_9.java
/*
* 示例程序Sample4_9: LEquations类的求解对称正定方程组的平方根法
*/
package javaalgorithm.sample;
import javaalgorithm.algorithm.Matrix;
import javaalgorithm.algorithm.LEquations;
public class Sample4_9
{
www.eeworm.com/read/286417/4039468
java sample3_4.java
/*
* 示例程序Sample3_4: Matrix类的复矩阵求逆的全选主元高斯-约当法
*/
package javaalgorithm.sample;
import javaalgorithm.algorithm.Matrix;
public class Sample3_4
{
public static void main(String[] args)
{
www.eeworm.com/read/286417/4039496
java sample4_10.java
/*
* 示例程序Sample4_10: LEquations类的求解大型稀疏方程组的全选主元高斯-约去消去法
*/
package javaalgorithm.sample;
import javaalgorithm.algorithm.Matrix;
import javaalgorithm.algorithm.LEquations;
public class Samp