代码搜索:Insert
找到约 10,000 项符合「Insert」的源代码
代码结果 10,000
www.eeworm.com/read/300042/13941392
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/237606/13942634
txt insert into.txt
use StuMana
go
insert into Students
values('1','王丽','','女','汉','1985-02-04','团员','南京','330702198509121214','25004','','江苏省南京市说得来路','456321','2002-09-12','2','','','')
go
insert into Students
www.eeworm.com/read/135222/13949474
ico insert.ico
www.eeworm.com/read/135040/13966091
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) return 0; /
www.eeworm.com/read/134490/13986650
bmp insert.bmp
www.eeworm.com/read/134443/13990550
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/236482/14014275
o insert.o
www.eeworm.com/read/236482/14014293
c insert.c
#include
#include"def.h"
struct student *insert(struct student * head, struct student * stud)
{
struct student *p0,*p1,*p2;
p1=head;
p0=stud;
if(head==NULL)
{head=p0;p0->next=NU