代码搜索结果
找到约 10,000 项符合
7 的代码
nco.tbl
%
Copyright (C) 1991-2004 Altera Corporation
Any megafunction design, and related netlist (encrypted or decrypted),
support information, device programming or simulation file, and any other
nco.tbl
%
Copyright (C) 1991-2004 Altera Corporation
Any megafunction design, and related netlist (encrypted or decrypted),
support information, device programming or simulation file, and any other
nco_sin_cos.hex
:01000000<mark>7</mark>f80
:01000100<mark>7</mark>f<mark>7</mark>f
:01000200<mark>7</mark>f<mark>7</mark>e
:01000300<mark>7</mark>f<mark>7</mark>d
:01000400<mark>7</mark>e<mark>7</mark>d
:01000500<mark>7</mark>e<mark>7</mark>c
:01000600<mark>7</mark>e<mark>7</mark>b
:01000<mark>7</mark>00<mark>7</mark>d<mark>7</mark>b
:01000800<mark>7</mark>d<mark>7</mark>a
:01000900<mark>7</mark>c<mark>7</mark>a
...
nco_sin_cos_f.hex
:01000000<mark>7</mark>f80
:01000100<mark>7</mark>f<mark>7</mark>f
:01000200<mark>7</mark>f<mark>7</mark>e
:01000300<mark>7</mark>f<mark>7</mark>d
:01000400<mark>7</mark>e<mark>7</mark>d
:01000500<mark>7</mark>e<mark>7</mark>c
:01000600<mark>7</mark>e<mark>7</mark>b
:01000<mark>7</mark>00<mark>7</mark>d<mark>7</mark>b
:01000800<mark>7</mark>d<mark>7</mark>a
:01000900<mark>7</mark>c<mark>7</mark>a
...
7þ¦
//求二叉树中叶子结点个数
#include "stdio.h"
#include "stdlib.h"
#include "malloc.h"
#include "iostream"
int sum=0;
typedef struct node
{
char data;
struct node *lchild;
struct node *rchild;
}*B
7~
包装类:
1)解决一些 基本类型取值问题 :例如缺考的学生成绩不能处理为0(null)
2)解决基本类型不能使用场合 :例如Collection中只允许放置引用类型
3)实现基本类型和字符串的转换
"" + (int)i + (float)f
-------------------------------------------------------------------