代码搜索:2
找到约 10,000 项符合「2」的源代码
代码结果 10,000
www.eeworm.com/read/482102/6626589
c algo2-2.c
/* algo2-2.c 实现算法2.2的程序 */
#include"c1.h"
typedef int ElemType;
#include"c2-1.h"
#include"bo2-1.c"
void MergeList(SqList La,SqList Lb,SqList *Lc) /* 算法2.2 */
{ /* 已知线性表La和Lb中的数据元素按值非递减排
www.eeworm.com/read/482102/6626591
c bo2-2.c
/* bo2-2.c 单链表线性表(存储结构由c2-2.h定义)的基本操作(12个) */
Status InitList(LinkList *L)
{ /* 操作结果:构造一个空的线性表L */
*L=(LinkList)malloc(sizeof(struct LNode)); /* 产生头结点,并使L指向此头结点 */
if(!*L) /* 存储分配失败 */
www.eeworm.com/read/482102/6626609
c main2-2.c
/* main2-2.c 检验bo2-2.c的主程序(与main2-1.c很像) */
#include"c1.h"
typedef int ElemType;
#include"c2-2.h" /* 与main2-1.c不同 */
#include"bo2-2.c" /* 与main2-1.c不同 */
Status comp(ElemType c1,ElemType
www.eeworm.com/read/482102/6626617
h c2-2.h
/* c2-2.h 线性表的单链表存储结构 */
struct LNode
{
ElemType data;
struct LNode *next;
};
typedef struct LNode *LinkList; /* 另一种定义LinkList的方法 */
www.eeworm.com/read/481861/6631695
m project2-2.m
% a section of vowel
[x,fs]=wavread('C:\Users\FARZANEH\Desktop\New Folder\bahar.wav');
% fourier transform of windowed signal
Y=fft(x.*hamming(length(x)));
% cepstrum is DFT of log spectrum
C=fft
www.eeworm.com/read/482037/6635623
gif login2_2.gif
www.eeworm.com/read/481567/6643523
html 3_2_2.html
SQLite Release 3.2.2 On 2005 June 13 (3.2.2)
body {
m
www.eeworm.com/read/481267/6646931
bak 2_uv2.bak
### uVision2 Project, (C) Keil Software
### Do not modify !
Target (Target 1), 0x0000 // Tools: 'MCS-51'
Group (Source Group 1)
File 1,1, 0x0
Options 1,0,0 // Target '
www.eeworm.com/read/480920/6653678
cpp practica2_2.cpp
/*PRACTICA 2 EJERCICIO 2
Escribir un programa que le pida al usuario un n鷐ero entero positivo y que
calcule el factorial de ese n鷐ero, inform醤dolo por pantalla.*/
#include
#include
www.eeworm.com/read/480948/6654132
dsw algo2-2.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# 警告: 不能编辑或删除该工作区文件!
###############################################################################
Project: "ALGO2-2"=".\ALGO2-2