搜索结果
找到约 1,827 项符合
J-K触发器 的查询结果
软件 用74LS74双D触发器构成的异步二进制加法计数器
用74LS74双D触发器构成的异步二进制加法计数器的Multisim仿真。
电路图 功放电路功放j集成块电路资料
功放j集成块电路资料 常用的功放集成块
源码 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){
&nbsp; ...
源码 K-means聚类算法Hadoop分布式实现
Hadoop下的K-means的Java实现,使用eclipse。
软件 道理特分解法
#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= ...
其他 有限差分法
function&nbsp;[alpha,N,U]=youxianchafen2(r1,r2,up,under,num,deta)&nbsp;&nbsp;
&nbsp;&nbsp;
%[alpha,N,U]=youxianchafen2(a,r1,r2,up,under,num,deta)&nbsp;&nbsp;
%该函数用有限差分法求解有两种介质的正方形区域的二维拉普拉斯方程的数值解&nbsp;&nbsp;
%函数返回迭代因子、迭代次数 ...
源码 数据挖掘-聚类-K-means算法Java实现
K-Means算法是最古老也是应用最广泛的聚类算法,它使用质心定义原型,质心是一组点的均值,通常该算法用于n维连续空间中的对象。
K-Means算法流程
step1:选择K个点作为初始质心
step2:repeat
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;将每个点指派到最近的质心,形成K个簇
&nbsp; &nb ...
源码 k均值算法的matlab源程序
用于k均值算法的matlab源程序,非常实用,简单易懂
源码 成绩查询系统
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#define N 100
int iNumOfStu=0;
struct score
&nbsp;&nbsp;{
&nbsp;&nbsp;float math;
&nbsp;&nbsp;float english;
&nbsp;&nbsp;float computer;
&nbsp;&nbsp;};
struct student
&nbsp;&nbsp;{
&nbsp;&nbsp;int number ...