搜索结果

找到约 12,542 项符合 A.J 的查询结果

其他 经典的CDMA扩频通信书籍

经典的CDMA扩频通信书籍,A.J.维特比编写
https://www.eeworm.com/dl/534/342610.html
下载: 54
查看: 1033

数学计算 计算这个智力题: 在这个乘法算式里

计算这个智力题: 在这个乘法算式里,每一个字母代表着0-9中的一个数,不同字母代表不同数。 A B C D E F G H * A J --------------------- E J A H F D G K C B D F H A J E C --------------------- C C C C C C C C C 请问,C 代表哪个数字?
https://www.eeworm.com/dl/641/361339.html
下载: 62
查看: 1017

其他书籍 计算流体力学基础与应用的英文版

计算流体力学基础与应用的英文版,作者是C.A.J Fletcher,只能用经典描述。
https://www.eeworm.com/dl/542/441239.html
下载: 37
查看: 1043

其他书籍 计算流体力学基础与应用的英文版(二)

计算流体力学基础与应用的英文版(二),作者是C.A.J Fletcher,只能用经典描述。
https://www.eeworm.com/dl/542/441242.html
下载: 68
查看: 1030

其他书籍 计算流体力学基础与应用的英文版(三)

计算流体力学基础与应用的英文版(三),作者是C.A.J Fletcher,只能用经典描述。 没有分割文件,可以单独使用,只是文件太大我的网速太慢,请站长谅解。
https://www.eeworm.com/dl/542/441244.html
下载: 77
查看: 1055

数据结构 设有由n个不相同的整数组成的数列

设有由n个不相同的整数组成的数列,记为: a(1)、a(2)、……、a(n)且a(i)<>a(j) (i<>j) 例如3,18,7,14,10,12,23,41,16,24。 若存在i1<i2<i3< … < ie 且有a(i1)<a(i2)< … <a(ie)则称为长度为e的不下降序列。如上例中3,18,23,24就是一个长度为4的不下降序列,同时也有3,7,10,12,16,24长度为6的不下降序列 ...
https://www.eeworm.com/dl/654/454977.html
下载: 42
查看: 1148

源码 c语言算法排序

1.Describe a Θ(n lg n)-time algorithm that, given a set S of n integers and another integer x, determines whether or not there exist two elements in S whose sum is exactly x. (Implement exercise 2.3-7.) #include<stdio.h> #include<stdlib.h> void merge(int arr[],int low,int mid,int high){   ...
https://www.eeworm.com/dl/514507.html
下载: 1
查看: 15

软件 道理特分解法

#include "iostream" using namespace std; class Matrix { private: double** A; //矩阵A double *b; //向量b public: int size; Matrix(int ); ~Matrix(); friend double* Dooli(Matrix& ); void Input(); void Disp(); }; Matrix::Matrix(int x) { size= ...
https://www.eeworm.com/dl/517487.html
下载: 2
查看: 30

源码 成绩查询系统

#include<stdio.h> #include<string.h> #include<stdlib.h> #define N 100 int iNumOfStu=0; struct score   {   float math;   float english;   float computer;   }; struct student   {   int number ...
https://www.eeworm.com/dl/520134.html
查看: 56

源码 学生成绩guanli

#include<stdio.h> #include<string.h> #include<stdlib.h> #define N 100 int iNumOfStu=0; struct score   {   float math;   float english;   float computer;   }; struct student   {   int number ...
https://www.eeworm.com/dl/520138.html
查看: 52