一 特征 采用磁屏蔽结构; 低直流阻抗、耐流较高; 适合表面贴装 二 用途 录像机、液晶显示器、笔记本电脑、通讯、设备、办公自动化等电子设备的电源扼流
标签: 屏蔽电感
上传时间: 2013-10-09
上传用户:李哈哈哈
绕线片式功率电感GDRH系列 一 特征 采用磁屏蔽结构; 低直流阻抗、耐流较高; 适合表面贴装 二 用途 录像机、液晶显示器、笔记本电脑、通讯、设备、办公自动化等电子设备的电源扼流
上传时间: 2013-10-10
上传用户:helmos
名称:绕线功率电感器 编号:Pro201257114027 型号:GDRH-D系列 类别:屏蔽式绕线电感器 品牌: 绕线片式功率电感GDRH-D系列 一 特征 采用磁屏蔽结构 低直流阻抗、高饱和电流 厚度薄、体积小,适合表面贴装 二 用途 录像机、液晶显示器、笔记本电脑、通讯、 设备、办公自动化等电子设备的电源扼流
上传时间: 2013-12-12
上传用户:2525775
利用桶排序给数组a排序,建立的桶为b和e,其中b为含有十万个桶,e为只有一个链表的桶,然后对b和e使用插入算法排序,比较两种算法的时间,b需要40毫秒左右,e需要9到10分钟。
上传时间: 2014-01-02
上传用户:13681659100
C++完美演绎 经典算法 如 /* 头文件:my_Include.h */ #include <stdio.h> /* 展开C语言的内建函数指令 */ #define PI 3.1415926 /* 宏常量,在稍后章节再详解 */ #define circle(radius) (PI*radius*radius) /* 宏函数,圆的面积 */ /* 将比较数值大小的函数写在自编include文件内 */ int show_big_or_small (int a,int b,int c) { int tmp if (a>b) { tmp = a a = b b = tmp } if (b>c) { tmp = b b = c c = tmp } if (a>b) { tmp = a a = b b = tmp } printf("由小至大排序之后的结果:%d %d %d\n", a, b, c) } 程序执行结果: 由小至大排序之后的结果:1 2 3 可将内建函数的include文件展开在自编的include文件中 圆圈的面积是=201.0619264
标签: my_Include include define 3.141
上传时间: 2014-01-17
上传用户:epson850
8位液晶屏LCM0825的点亮源代码,本程序是从0到9循环显示,可以改变参数输入任意值。
上传时间: 2015-04-07
上传用户:hzy5825468
《DSP芯片的原理与开发应用(第2版)》,可以作为学习DSP的入门教材
上传时间: 2014-01-01
上传用户:xiaoxiang
数字运算,判断一个数是否接近素数 A Niven number is a number such that the sum of its digits divides itself. For example, 111 is a Niven number because the sum of its digits is 3, which divides 111. We can also specify a number in another base b, and a number in base b is a Niven number if the sum of its digits divides its value. Given b (2 <= b <= 10) and a number in base b, determine whether it is a Niven number or not. Input Each line of input contains the base b, followed by a string of digits representing a positive integer in that base. There are no leading zeroes. The input is terminated by a line consisting of 0 alone. Output For each case, print "yes" on a line if the given number is a Niven number, and "no" otherwise. Sample Input 10 111 2 110 10 123 6 1000 8 2314 0 Sample Output yes yes no yes no
上传时间: 2015-05-21
上传用户:daguda
源代码\用动态规划算法计算序列关系个数 用关系"<"和"="将3个数a,b,c依次序排列时,有13种不同的序列关系: a=b=c,a=b<c,a<b=v,a<b<c,a<c<b a=c<b,b<a=c,b<a<c,b<c<a,b=c<a c<a=b,c<a<b,c<b<a 若要将n个数依序列,设计一个动态规划算法,计算出有多少种不同的序列关系, 要求算法只占用O(n),只耗时O(n*n).
上传时间: 2013-12-26
上传用户:siguazgb
<1>问题描述 有一个魔王总是使用自己的一种非常精练而又抽象的语言讲话,没有人能听得懂,但他的语言是可以逐步解释成人能听懂的语言,因为他的语言是由以下两种形式的规则由人的语言逐步抽象上去的: (1) α 转换为 β1β2…βm (2) (θδ1δ2…δn) 转换为 θδnθδn-1… θδ1θ 在这两种形式重,从左到右均表示解释。试写一个魔王语言的解释兄,把他的话解释成人能听得懂的话。 [基本要求] 用下述两条具体规则和上述规则形式(2)实现。设大写字母表示魔王语言的词汇;小写字母表示人的语言词汇;希腊字母表示可以用大写字母或小写字母代换的变量。魔王语言可含人的词汇。 (1)B 转换为 tAdA (2)A 转换为 sae
上传时间: 2013-12-17
上传用户:jyycc