搜索资源列表
1
- 关于Recaman s序列的问题,一个简单解决方法,保证时间和空间的限制。-The Recaman s sequence is defined by a0 = 0 for m > 0, am = am-1- m if the resulting am is positive and not already in the sequence, otherwise am = am-1+ m. The first few numbers in the Recaman s Sequence
AD
- 基于avr单片机实现AD转换,A0口输入模拟量,D口连接数码管-Avr-based MCU AD conversion, A0 analog input port, D I connect the digital control
ArrayLlist
- 分别用顺序表和单链表作为存储结构,完成:(1)实现线性表(a0, a1, a2, a3, …,an-1)就地逆置的操作。(2)实现将x插入一个递增有序表L中,并使L仍是一个有序表。(3)实现统计在一个输入字符串中各个不同字符出现的频度。 -Were used to sequence the table and a single list as the storage structure, completed: (1) to achieve a linear form (a0, a1, a2, a
hao
- 对A0 A1 A2 三个通道进行电压检测,ADC结果存于 ad_value[3] 数组中.并用 result[X]= ((Avcc * ad_value[X] )/ 1023 的公式来计算电压值 .程序中写到的 "*1000" 是将结果扩大1000倍,保留3位小数点-Right A0 A1 A2 3 channel voltage detector, ADC results stored in ad_value [3] array. And with the result [X] = ((Avc
Devc
- 、一元多项式的加法、减法、乘法的实现 【问题描述】 设有一元多项式Am(x)和Bn(x),   Am(x)=A0+A1x1+A2x2+A3x3+… +Amxm   Bn(x)=B0+B1x1+B2x2+B3x3+… +Bnxn   请实现求M(x)= Am(x)+Bn(x)、M(x)= Am(x)-Bn(x)和M(x)= Am(x)×Bn(x)。 【基本要求】 首先判定多项式是否稀疏; 分别采用顺序和动态存储结构实现; 结果M(x)中
p5
- 【问题描述】 编写一个程序实现两个一元多项式相乘。 【输入形式】 首先输入第一个多项式中系数不为0的项的系数和指数,以一个空格分隔。且该多项式中各项的系数均为0或正整数,系数和最高幂次不会超过int类型的表示范围。对于多项式 anxn +a n-1 x n-1 + … + a1x1 + a0x0 的输入方法如下: an n a n-1 n-1 … a1 1 a0 0 即相邻两个整数分别表示表达式中一项的系数和指数。在输入中只出现系数不为0的项。最后一项的指
1111
- (一)、承台板底中心位移 1、竖向位移b0= 0.1099E-02M 2、水平位移a0= 0.1096E-01M 3、转角位移β0= 0.5777E-03RAD (二)、桩顶内力 1、桩顶轴力 第 1 排桩顶轴力 0.4285E+03KN 第 2 排桩顶轴力 0.2071E+04KN 2、桩顶弯矩 非直接承受土压力的桩顶弯矩为Mi= -0.8176E+03KN-M 直接承受土压力的桩顶弯矩为Mi= -0.5693E+03KN-M
AL320C-SDK-A0-20070530
- AL320C Eval boards, examples etc
binary-search
- 折半查找法是效率较高的一种查找方法。假设有已经按照从小到大的顺序排列好的五个整数a0~a4,要查找的数是X,其基本思想是: 设查找数据的范围下限为l=1,上限为h=5,求中点m=(l+h)/2,用X与中点元素am比较,若X等于am,即找到,停止查找;否则,若X大于am,替换下限l=m+1,到下半段继续查找;若X小于am,换上限h=m-1,到上半段继续查找;如此重复前面的过程直到找到或者l>h为止。如果l>h,说明没有此数,打印找不到信息,程序结束。-binary search
STM32F407VET6VGT6%E6%A0%B8%E5%BF%83%E6%9D%BF
- 基于STM32F407点亮LED的程序额(STM32F407 lit LED based procedures)
LCD12864
- 9S08DZ60MLH64引脚单片机 A0 A1 A2分别为cs sid clk,配置为输出 程序为串行 液晶显示可以在任意位置显示数字和汉字(9S08DZ60MLH 64pins 12864 program)
PCA9554
- 三片pca9554串联在一起,用IIC A0 A1 A2来分地址驱动继电器(In series with the three pca9554 with IIC A0 A1 A2 to address drive relay)
auto-tag-slug.0.5.0
- 此插件的初衷是为了解决 IIS6 上经过 Rewrite 的 tag 的解析问题,使用后可以将 WordPress 标签原生的 urlencode 格式转换为汉语拼音或者英语单词(This plugin will convert post tags slug to Pinyin or English words. For example, you may have tag URL like this: www.abc.com/tag/%e4%bd%a0%e5%a5%bd With t
perl%E7%BB%83%E4%B9%A0
- 习题及答案,适用于perl初学者,可以下载浏览(Exercises and answers to Perl beginners, you can download and browse)
ArduinoKRUPS
- Keeping alive a KRUPS cofee maker with Arduino WARN!! does not has PID to control temperature The LED flashing sometimes fail NTC pin to +5V, Another pin to A0, A0 (PullDown resistor) to Gnd of 22000Ohms (22K - orange,orange,orange) For led
PWM100kHz
- Arduino pro mini generate 100kHz , push-pull , A0 input to cut off
masm
- 建立长度为n的顺序表,然后将表中的数据元素逆置,即若表中原来的数据元素序列为(a0,a1,a2,…,an),则逆置后的数据元素序列为(an,an-1,an-2,…,a1,a0)。(数据类型为字符型) 输入 第一行为顺序表的长度n; 第二行为顺序表中的数据元素. 输出 输出为逆置后的顺序表.(helloworld jhhhhh)
pm2.5传感器程序
- stm32+GP2Y1010AU,通过屏幕显示pm2.5的值,stm32的A1口连接传感器的LED端口,A0连接数据口!(60/5000 Stm32 +GP2Y1010AU displays the value of pm2.5 through the screen. The A1 port of stm32 connects to the LED port of the sensor, and A0 connects to the data port!)