-
单片机输入法c源代码
纯C语言编写的输入法源代码,主要用于单片机,有需要的可以下载!
使用说明:
拼音输入法杳询函数: unsigned char code * py_ime(unsigned char input_py_val[]);
input_py_val为已输入的拼音码字符串头指针,
反回值为中文的起始地址,当为0时,杳询失败
应用举例:
{
unsigned char input_string[]={"bang"};
unsigned char chines_string[100];
sprintf(chines_string,"%s",py_ime(input_string));
}
- 2023-08-15 12:10:04下载
- 积分:1
-
对于独立使用FFT和DLL文件
FFT and dll documents for independent utility
- 2023-05-10 12:45:04下载
- 积分:1
-
Based on M/G/K multi
基于M/G/K 多类别共用一个资源的最优化分配问题程序 主要以系统总等待时间为目标函数-Based on M/G/K multi-class share an optimization of resources allocation process is essentially the system as the objective function the total waiting time
- 2022-03-04 17:10:15下载
- 积分:1
-
样条插值函数,插值边界条件为自然边界条件。运行编写环境C...
样条插值函数,插值边界条件为自然边界条件。运行编写环境C-spline interpolation function, interpolation boundary conditions for the natural boundary conditions. Operation C-environment
- 2022-08-08 06:32:06下载
- 积分:1
-
Apriori 算法的 c + + 实现
Apriori 算法 c + + 实现。
它可以处理数据的量大。
该程序可以用于数据挖掘。
- 2022-04-01 12:01:40下载
- 积分:1
-
有关集合的运算
有关集合的运算-the pool operator!
- 2022-02-03 04:15:37下载
- 积分:1
-
随机图生成工具
这是一个有向图或无向图的生成工具,可以随机地生产邻接矩阵和邻接表。该程序可以用于测试时产生测试数据程序为命令行式交互,命令列表如下: ////////////////////////// // COMMAND FORMAT // ////////////////////////// //gen D 5 10 //生成有向图,节点数,边数 //gen U 5 4 //生成无向图,节点数,边数 //show list //以邻接表形式输出 //show mat //以邻接矩阵形式输出 //show all //以邻接表和邻接矩阵形式输出 //out //out name.txt //输出到文件 //help //帮助 //quit ////////////////////
- 2023-03-15 05:35:04下载
- 积分:1
-
RSA算法基础
RSA算法基础->实践 讲讲自己学习RSA中的实践过程,已经对RSA熟悉的看家就不用在此浪费时间了。-- gt; Talk about learning from practice RSA"s practice and has a specialty familiar with the RSA will not have the time to waste.
- 2022-03-31 04:16:10下载
- 积分:1
-
判断闰年用c++写的,我也才学
判断闰年用c++写的,我也才学-judgment leap year with c write, and I barely
- 2022-09-28 11:10:02下载
- 积分:1
-
数据结构-算法-C语言-Demo
#ifndef _BINARY_TREE_H_INCLUDED#define _BINARY_TREE_H_INCLUDED#include #include templatestruct Bintree_node {T element;Bintree_node* lchild;Bintree_node* rchild;explicit Bintree_node(const T& elem=T(), Bintree_node* lchd=0, Bintree_node* rchd=0): element(elem), lchild(lchd), rchild(rchd) {}};templateclass Binary_tree {public:typedef Bintree_node* PBtn;Binary_tree();virtual ~Binary_tree();void clear();int depth() const;int size() const;virtual PBtn find(const T& elem) const=0;virtual void insert(const T& elem)=0;virtual void erase(const T& elem)=0;virtual void print(std::ostream& output) const=0;void print_tree(std::ostream& output) const;protected:
- 2022-01-29 04:39:50下载
- 积分:1