目录 第一章 传输线理论 一 传输线原理 二 微带传输线 三 微带传输线之不连续分析 第二章 被动组件之电感设计与分析 一 电感原理 二 电感结构与分析 三 电感设计与模拟 电感分析与量测
标签: 传输线
上传时间: 2013-11-21
上传用户:qb1993225
题目:利用条件运算符的嵌套来完成此题:学习成绩>=90分的同学用A表示,60-89分之间的用B表示,60分以下的用C表示。 1.程序分析:(a>b)?a:b这是条件运算符的基本例子。
上传时间: 2015-01-08
上传用户:lifangyuan12
Trolltech公司发布的基于C++图形开发环境,支持大量的API,是Linux下的图形界面开发利器。这个版本可以和qt-embedded-2.3.7配合使用。
上传时间: 2013-12-24
上传用户:huyiming139
The government of a small but important country has decided that the alphabet needs to be streamlined and reordered. Uppercase letters will be eliminated. They will issue a royal decree in the form of a String of B and A characters. The first character in the decree specifies whether a must come ( B )Before b in the new alphabet or ( A )After b . The second character determines the relative placement of b and c , etc. So, for example, "BAA" means that a must come Before b , b must come After c , and c must come After d . Any letters beyond these requirements are to be excluded, so if the decree specifies k comparisons then the new alphabet will contain the first k+1 lowercase letters of the current alphabet. Create a class Alphabet that contains the method choices that takes the decree as input and returns the number of possible new alphabets that conform to the decree. If more than 1,000,000,000 are possible, return -1. Definition
标签: government streamline important alphabet
上传时间: 2015-06-09
上传用户:weixiao99
viterbi 编译码器C源程序,rate=1/2 N=7
上传时间: 2015-06-14
上传用户:gundan
上下文无关文法(Context-Free Grammar, CFG)是一个4元组G=(V, T, S, P),其中,V和T是不相交的有限集,S∈V,P是一组有限的产生式规则集,形如A→α,其中A∈V,且α∈(V∪T)*。V的元素称为非终结符,T的元素称为终结符,S是一个特殊的非终结符,称为文法开始符。 设G=(V, T, S, P)是一个CFG,则G产生的语言是所有可由G产生的字符串组成的集合,即L(G)={x∈T* | Sx}。一个语言L是上下文无关语言(Context-Free Language, CFL),当且仅当存在一个CFG G,使得L=L(G)。 *⇒ 例如,设文法G:S→AB A→aA|a B→bB|b 则L(G)={a^nb^m | n,m>=1} 其中非终结符都是大写字母,开始符都是S,终结符都是小写字母。
标签: Context-Free Grammar CFG
上传时间: 2013-12-10
上传用户:gaojiao1999
手机韩语输入法源码 朝鲜语字母与手机键盘之间的对应,选择键为回车。 朝鲜语字母 键盘事件 ㄱ 1 ㄴ 2 ㄷ 2* ㄹ 4 ㅁ 5 ㅂ 5* ㅅ 7 ㅇ 8 ㅈ 7* ㅊ 7** ㅋ 1* ㅌ 2** ㅍ 5** ㅎ 8* ㅏ 3 ㅑ 3* ㅓ 33 ㅕ 33* ㅗ 6 ㅛ 6* ㅜ 66 ㅠ 66* ㅡ 0 ㅣ 9 ㄲ 1# ㅆ 7# ㄸ 2*# ㅉ 7*# ㅐ 39 ㅒ 3*9 ㅔ 339 ㅖ 33*9 文件: hangul.h HangulApi.h KMime.h ksc.h automata.c hangul.c ksc.c main.c //测试程序,可以在dos下面进行测试。要求操作系统必须切换为韩文。
上传时间: 2015-10-23
上传用户:xieguodong1234
We have a group of N items (represented by integers from 1 to N), and we know that there is some total order defined for these items. You may assume that no two elements will be equal (for all a, b: a<b or b<a). However, it is expensive to compare two items. Your task is to make a number of comparisons, and then output the sorted order. The cost of determining if a < b is given by the bth integer of element a of costs (space delimited), which is the same as the ath integer of element b. Naturally, you will be judged on the total cost of the comparisons you make before outputting the sorted order. If your order is incorrect, you will receive a 0. Otherwise, your score will be opt/cost, where opt is the best cost anyone has achieved and cost is the total cost of the comparisons you make (so your score for a test case will be between 0 and 1). Your score for the problem will simply be the sum of your scores for the individual test cases.
标签: represented integers group items
上传时间: 2016-01-17
上传用户:jeffery
Ex3-23 亲兄弟问题 « 问题描述: 给定n 个整数0 1 1 , , , n- a a a 组成的序列。序列中元素i a 的亲兄弟元素k a 定义为: min{ | } k i j n j j i a = a a ³ a < < 。 亲兄弟问题要求给定序列中每个元素的亲兄弟元素的位置。元素i a 的亲兄弟元素为k a 时,称k 为元素i a 的亲兄弟元素的位置。当元素i a 没有亲兄弟元素时,约定其亲兄弟元素 的位置为-1。 例如,当n=10,整数序列为6,1,4,3,6,2,4,7,3,5 时,相应的亲兄弟元素位 置序列为:4,2,4,4,7,6,7,-1,9,-1。 « 编程任务: 对于给定的n个整数0 1 1 , , , n- a a a 组成的序列,试用抽象数据类型栈,设计一个O(n) 时间算法,计算相应的亲兄弟元素位置序列。 « 数据输入: 由文件input.txt提供输入数据。文件的第1 行有1 个正整数n,表示给定给n个整数。 第2 行是0 1 1 , , , n- a a a 。 « 结果输出: 程序运行结束时,将计算出的与给定序列相应的亲兄弟元素位置序列输出到output.txt 中。 输入文件示例 输出文件示例 input.txt 10 4 2 4 4 7 6 7 -1 9 -1 output.txt 6 1 4 3 6 2 4 7 3 5
上传时间: 2013-12-17
上传用户:shizhanincc
Tok ASM Tool 软件介绍: 打开软件后可以看到程序的主题界面 编辑区可以向里面写入代码并编译 学习参考区是提供给编写者的一些提示 单击展开可以展开学习与参考的分类面板 软件使用: 1.新建编辑区 2.录入源代码 3.确认没有错误 4.依次单击快捷工具栏上的"汇编(F6)>连接(F7)>调试(F5)" 5.调整代码 6.若想改进代码,请转到第2步 7.整理工作. 软件升级: 单击"帮助>关于平台>升级..."即可转到升级的页面
上传时间: 2016-08-25
上传用户:lmeeworm