代码搜索:Insert
找到约 10,000 项符合「Insert」的源代码
代码结果 10,000
www.eeworm.com/read/143612/12856487
c insert.c
// 表格的插入算法
#define MAX 10 // 最多10个元素
int a[MAX]; // 存放表格的数组
int n; // 有效元素个数
int insert (int k,int x) // 插入位置序号k,插入的数据为x
{
int i;
if (n == MAX) return 0; // 表格已满,插入失败
if (n < k) re
www.eeworm.com/read/143612/12856500
asm insert.asm
;单字节表格的插入算法
FRONT EQU 40H ;表格首址。
MAX DATA 30H ;元素个数最大值存放单元。
NUMB DATA 31H ;已有元素个数存放单元。
I DATA 32H ;待插入元素的序号存放单元。
X DATA 33H ;待插入元素的数值存放单元。
ORG 0000H
LJMP TEST
ORG 100H
TEST: MOV
www.eeworm.com/read/143612/12856593
asm insert.asm
;线性插值算法应用实例。
ORG 0000H
LJMP TEST
ORG 100H
TEST: MOV A,#27H ;假设A/D转换结果是27H。
LCALL INSERT ;用线性插值算法求对应物理量的精确值。
NOP ;结果在R2R3中( 2569H )。
NOP
MOV A,#83H ;假设A/D转换结果是83H。
LCALL INSERT ;用线
www.eeworm.com/read/244502/12859838
m insert.m
function [f]=insert(edof,f,fe)
% [f]=insert(edof,f,fe)
%-------------------------------------------------------------
% PURPOSE
% Assembel fe into the global force vector f
% according to the topo
www.eeworm.com/read/143410/12878383
m insert.m
www.eeworm.com/read/143387/12879604
c insert.c
/*
** 2001 September 15
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgiven
www.eeworm.com/read/143387/12879767
test insert.test
# 2001 September 15
#
# The author disclaims copyright to this source code. In place of
# a legal notice, here is a blessing:
#
# May you do good and not evil.
# May you find forgiveness for yo
www.eeworm.com/read/141004/13048092
java insert.java
package main.algorithm;
import java.awt.*;
import javax.swing.*;
import main.Gracie;
public class Insert extends Gracie{
public Insert(){
setBackground(Color.white);
new Thread(this
www.eeworm.com/read/141004/13048098