代码搜索:Insert
找到约 10,000 项符合「Insert」的源代码
代码结果 10,000
www.eeworm.com/read/201477/15407681
cpp insert.cpp
// insert into a sorted array
#include
template
void Insert(T a[], int& n, const T& x)
{// Insert x into the sorted array a[0:n-1].
// Assume a is of size > n
int
www.eeworm.com/read/112881/15475223
h insert.h
void Insert(BTree &q,int i,int x,Record *r,BTree &ap)//将x插入地点q的第i+1位置
{
int j;
for(j=q->keynum+1;j>i+1;j--) //结点中除关键字数目外,其它信息往后移一个位置
{
q->key[j]=q->key[j-1];
q->recptr[j]=q->recpt
www.eeworm.com/read/110561/15530984
asm insert.asm
_InsertProc proto:DWORD ,:DWORD ,:DWORD ,:DWORD
.code
_InsertProc proc @hDlg,uMsg,wParam,lParam
local @szBuf[255]:BYTE
mov eax,uMsg
.if eax==WM_INITDIALOG
;初始化对话框
invoke SetWindowText
www.eeworm.com/read/109995/15543802
cpp insert.cpp
#include"iostream.h"
#include"math.h"
#include"stdlib.h"
amspl(double x[], double y[], int n, double dy[], double ddy[], double t[], int m, double z[], double dz[], double ddz[]);
void mai
www.eeworm.com/read/109038/15566592
cpp insert.cpp
// Insert.cpp : implementation file
// Simple insert piece dialog
#include "stdafx.h"
#include "bfield.h"
#include "Insert.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static ch
www.eeworm.com/read/109038/15566596
h insert.h
// Insert.h : header file
//
/////////////////////////////////////////////////////////////////////////////
// CInsert dialog
class CInsert : public CDialog
{
// Construction
public:
int m
www.eeworm.com/read/106939/15617008
cpp insert.cpp
#include"head.h"
#include
#include
extern void InitScore(Student*);
extern void InputDisplay(Student*);
void Insert(Student* &head)
{
Student*pGuard;
Student*pS;