代码搜索:减速算法

找到约 10,000 项符合「减速算法」的源代码

代码结果 10,000
www.eeworm.com/read/111448/15512517

txt 非递归前序,中序,后序遍历二叉树(优化算法).txt

#include > #include > typedef struct mybitree { > char data; > struct mybitree *left, *right; > } bitree; > bitree e = {'e', NULL, NULL}; > bitree f = {'f', NULL,
www.eeworm.com/read/108338/15587814

htm vc知识库文章 - 一种随机抽题的简单算法.htm

VC知识库文章 - 一种随机抽题的简单算法
www.eeworm.com/read/483370/6605517

c xiaoche.c

//题目:自动往还小车 //用脉宽调制来控制小车速度 //光电传感器检测黑线 //小车以中速开始,检测到第1条黑线变为减速, //检测到第2条黑线变为加速,检测到第3条黑线变为减速, //检测到第4条黑线变为暂停3s,然后还回,做同上运动。 //并用数码管显示总时间和遇到的黑线数 //电机启动电流处理 //速度太快检测不到黑线 #include "reg51.h" #defin ...