代码搜索:Insert
找到约 10,000 项符合「Insert」的源代码
代码结果 10,000
www.eeworm.com/read/433514/7924956
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/433514/7925075
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/298825/7932837
htm insert.htm
function check()
{
if(myform.username.value=="")
{
alert("请输入用户名!");
return false;
}
if(myform.password.value=="")
{
alert("请输入口令!
www.eeworm.com/read/397782/8022036
c insert.c
#include "MemDataBase.h"
#include "demo.h"
int main(int argc,char **argv)
{
MEMDATABASE *pMemDB;
DEMO_DEF stuDemo;
int iRet,iIpcKey;
long lStart,lEnd;
int i;
if(argc!=6)
{
www.eeworm.com/read/197057/8033002
cpp insert.cpp
// Insert.cpp : implementation file
//
#include "stdafx.h"
#include "people2.h"
#include "Insert.h"
#include "MODIPeople.h"
#include "people.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef
www.eeworm.com/read/197057/8033087
h insert.h
#if !defined(AFX_INSERT_H__5E19D838_CDF6_4352_AA1D_61F033FC36F6__INCLUDED_)
#define AFX_INSERT_H__5E19D838_CDF6_4352_AA1D_61F033FC36F6__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_
www.eeworm.com/read/297009/8065886
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/396331/8115034
h insert.h
void insert(Pnode *L,Pnode p)
{
Pnode q,n;
int m;
m=0;
q=(*L)->next;
if(q==NULL)//所插的结点为第一个
{
(*L)->next=p;
}
e
www.eeworm.com/read/296068/8125114
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