搜索结果
找到约 1,235 项符合
TC-F 的查询结果
数值算法/人工智能 程序设计思路 在动态规划中
程序设计思路
在动态规划中,可将一个问题的解决方案视为一系列决策的结果,要考察每个最优决策序列中是否包含一个最优子序列。所以在最短路径问题中,假如在的第一次决策时到达了某个节点v,那么不管v 是怎样确定的,此后选择从v 到d 的路径时,都必须采用最优策略。利用最优序列由最优子序列构成的结论,可得到f 的递归 ...
单片机开发 数字音乐盒 (1) 硬件电路中用P1.0~P1.7控制按键
数字音乐盒
(1) 硬件电路中用P1.0~P1.7控制按键,其中P1.0~P1.3扫描行,P1.4~P1.7扫描列。
(2) 用P0.0~P0.7,P2.0~P2.7控制LED,其中P0.0~P0.7控制七段码a,b,c,d,e,f,g,用P2.0~P2.7为数码管位选信号。
(3) 用,P2.0~P2.2作为LCD的RS,R/W,E的控制信号。用P0.0~P0.7作为LCD的D0~D7的控制信号。
(4) 用P3.7口控制蜂鸣器 ...
数据结构 成績顯示三個部份abc #include<stdio.h> #include<stdlib.h> int main(void) { float gread
成績顯示三個部份abc
#include<stdio.h>
#include<stdlib.h>
int main(void)
{
float gread
printf("請輸入分數\n")
scanf("%f",&gread)
if(gread>=80&&gread<=100)
printf("成績為A\n")
else if(gread>=60&&gread<=79)
{
printf("成績為B\n")
}
else if(gread>=0&&gread<60)
{
printf("成績為C\n")
}
else ...
电子书籍 The literature of cryptography has a curious history. Secrecy, of course, has always played a centra
The literature of cryptography has a curious history. Secrecy, of course, has always played a central
role, but until the First World War, important developments appeared in print in a more or less
timely fashion and the field moved forward in much the same way as other specialized disciplines.
A ...
人工智能/神经网络 function [U,center,result,w,obj_fcn]= fenlei(data) [data_n,in_n] = size(data) m= 2 % Exponent fo
function [U,center,result,w,obj_fcn]= fenlei(data)
[data_n,in_n] = size(data)
m= 2 % Exponent for U
max_iter = 100 % Max. iteration
min_impro =1e-5 % Min. improvement
c=3
[center, U, obj_fcn] = fcm(data, c)
for i=1:max_iter
if F(U)>0.98
break
else
w_new=eye(in_n,in_n)
center1=sum(cent ...
单片机开发 made by: kangkai data:2008.11.23 this one is used to test arm7 str71x. use a led to test
made by: kangkai
data:2008.11.23
this one is used to test arm7 str71x.
use a led to test GPIO.
a---------P0.0
b---------P0.1
c---------P0.2
d---------P0.3
e---------P0.4
f---------P0.5
g---------P0.6
just run it and you will see the led to show 0-9 all the time.
其他 利用花指令扰乱Cracker
利用花指令扰乱Cracker,以达到保护软件的作用。
本工具可以自定义花指令,有三种模式,如下:
1、随机插入花指令
2、指定插入固定的花指令
3、全部插入花指令
使用方法:
1、请自行在 JunkData.mdb 数据库中添加花指令
2、在您要放花指令的地方写:{$F Junk}
3、{$F Junk} 为花指令标记
4、用本工具处理后,重 ...
单片机开发 7279键盘程序 设0--9数字键
7279键盘程序 设0--9数字键,A--F功能键
开机时在最高位显示‘P’
第一次按数字键在最高位显示数据,第2次按数字键在最次位显示数据,。。。。。。第8次按数字键在最低位显示数据
第9次按数字键在最高位显示数据。。。。。。按任意功能键则系统回到初始状态。 ...
人工智能/神经网络 用C语言实现了遗传算法
用C语言实现了遗传算法,加深对TC的认识。