代码搜索:binary
找到约 10,000 项符合「binary」的源代码
代码结果 10,000
www.eeworm.com/read/100018/15888688
gif binary.gif
www.eeworm.com/read/419852/10833908
txt check if a given binary tree is a binary search tree.txt
Write C code to check if a given binary tree is a binary search tree or not?
Discuss it!
int isThisABST(struct node* mynode)
{
if (mynode==NULL) return(true);
www.eeworm.com/read/291752/8400461
txt binary_wave.txt
0.000000, 1.000000e+000
0.125000, 1.000000e+000
0.250000, 1.000000e+000
0.375000, 1.000000e+000
0.500000, 1.000000e+000
0.625000, 1.000000e+000
0.750000, 1.000000e+000
0.875000, 1.00000
www.eeworm.com/read/390512/8461869
m random_binary.m
% File: random_binary.m
% Software given here is to accompany the textbook: W.H. Tranter,
% K.S. Shanmugan, T.S. Rappaport, and K.S. Kosbar, Principles of
% Communication Systems Simulation with
www.eeworm.com/read/433142/8543104
m random_binary.m
%子程序
function [x,bits] =random_binary(nbits,nsamples)
%this function generates a random binary waveform of length nbits
%sampled at a rate of nsamples/bit
x=zeros(1,nbits*nsamples);
bits=round(ra
www.eeworm.com/read/433021/8551809
vhd binary_upcounter.vhd
--Generated Binary Up Counter
--The first design entity is a T-type flip-flop. The second is an scalable synchronous binary up counter illustrating the use of the generate statement to produce regular
www.eeworm.com/read/288118/8652010
c binary1.c
www.eeworm.com/read/430236/8760330
c binary_tree.c
#include
#include
struct TNode{
char data;
struct TNode *lchild;
struct TNode *rchild;
};
typedef struct TNode Node;
void init(Node **node)
{
*node = (Node *)mal
www.eeworm.com/read/285808/8816597
m random_binary.m
% File: random_binary.m
% Software given here is to accompany the textbook: W.H. Tranter,
% K.S. Shanmugan, T.S. Rappaport, and K.S. Kosbar, Principles of
% Communication Systems Simulation with
www.eeworm.com/read/285806/8816938
m random_binary.m
% File: random_binary.m
% Software given here is to accompany the textbook: W.H. Tranter,
% K.S. Shanmugan, T.S. Rappaport, and K.S. Kosbar, Principles of
% Communication Systems Simulation with