代码搜索:insert
找到约 10,000 项符合「insert」的源代码
代码结果 10,000
www.eeworm.com/read/146126/12668840
cpp insert.cpp
// insert into a sorted array
#include
#include // has copy
using namespace std;
template
void insert(T a[], int& n, const T& x)
{// Insert x into the sor
www.eeworm.com/read/333541/12676793
c insert.c
void insert()
{ clrscr();
for(;;)
{ switch(insert_menu())
{ case 0: insert_with_number();break;
case 1: insert_with_score();break;
case 2: return;
}
}
}
www.eeworm.com/read/333541/12676839
obj insert.obj
www.eeworm.com/read/146022/12683301
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/333308/12688421
bmp insert.bmp
www.eeworm.com/read/145817/12700653
java insert.java
// =============== Program Description ===============
// 程序名称: insert.java
// 程序目的: 设计一个在链表内插入节点的程序。
// Written By Kuo-Yu Huang. (WANT Studio.)
// ====
www.eeworm.com/read/145339/12735230
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/332612/12746221
cpp insert.cpp
#include
#include
#include
#include "constant.h"
#include
#include "sqlite3x/sqlite3x.hpp"
using namespace std;
using namespace sqlite3x;
int ma
www.eeworm.com/read/332252/12767017
c insert.c
/*以下是插入对话框处理函数。*/
void Insert(struct student *Insert){ /*本函数以姓名为依据,把IMainHead里的数据插入到主链表的末尾。*/
struct student *p,*pfore;
p=MainHead;
pfore=p;
do
{
pfore=p;
p=p->stup;
}while(p!=NULL);
www.eeworm.com/read/331094/12851140