虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

C-Main

  • PTypes (C++ Portable Types Library) is a simple alternative to the STL that includes multithreading

    PTypes (C++ Portable Types Library) is a simple alternative to the STL that includes multithreading and networking. It defines dynamic strings, variants, character sets, lists and other basic data types along with threads, synchronization objects, IP sockets and named pipes. PTypes also offers message queues as an alternative method of thread synchronization. Its main `target audience is developers of complex network daemons, robots or non-visual client/server applications of any kind

    标签: multithreading alternative Portable includes

    上传时间: 2016-03-25

    上传用户:lz4v4

  • 用c++实现des算法 整体思路 用key.cpp 文件来产生秘钥

    用c++实现des算法 整体思路 用key.cpp 文件来产生秘钥,用ringfuction.cpp文件来实现轮函数,用main.c来实现加密和解密。有关函数见三个文件里的具体实现。

    标签: des cpp key 算法

    上传时间: 2016-03-26

    上传用户:fandeshun

  • 编程题(15_01.c) 结构 struct student { long num char name[20] int score struct student *

    编程题(15_01.c) 结构 struct student { long num char name[20] int score struct student *next } 链表练习: (1).编写函数struct student * creat(int n),创建一个按学号升序排列的新链表,每个链表中的结点中 的学号、成绩由键盘输入,一共n个节点。 (2).编写函数void print(struct student *head),输出链表,格式每行一个结点,包括学号,姓名,分数。 (3).编写函数struct student * merge(struct student *a,struct student *b), 将已知的a,b两个链表 按学号升序合并,若学号相同则保留成绩高的结点。 (4).编写函数struct student * del(struct student *a,struct student *b),从a链表中删除b链表中有 相同学号的那些结点。 (5).编写main函数,调用函数creat建立2个链表a,b,用print输出俩个链表;调用函数merge升序合并2个 链表,并输出结果;调用函数del实现a-b,并输出结果。 a: 20304,xxxx,75, 20311,yyyy,89 20303,zzzz,62 20307,aaaa,87 20320,bbbb,79 b: 20302,dddd,65 20301,cccc,99 20311,yyyy,87 20323,kkkk,88 20307,aaaa,92 20322,pppp,83

    标签: student struct score long

    上传时间: 2016-04-13

    上传用户:zxc23456789

  • TSP算法 1.C语言TSP算法 2.2-OPT

    TSP算法 1.C语言TSP算法 2.2-OPT,orOPT摄动 3.Main单独执行

    标签: TSP 2.2 OPT 算法

    上传时间: 2016-05-25

    上传用户:jiahao131

  • 用户用main表示主函数

    用户用main表示主函数,每个c程序必有一个main函数。

    标签: main 用户 函数

    上传时间: 2016-06-27

    上传用户:manlian

  • 程序名称: 数码管显示与键盘管理芯片ZLG7289的标准驱动程序(C51) 文件名: ZLG7289.h ZLG7289.C 说明: 本程序已经调试通过 程序的可移植性很好

    程序名称: 数码管显示与键盘管理芯片ZLG7289的标准驱动程序(C51) 文件名: ZLG7289.h ZLG7289.C 说明: 本程序已经调试通过 程序的可移植性很好,仅做少量修改就可以直接包含使用 程序占用资源少,仅使用4根必须I/O口线,不占用定时器等其它资源 所有全局性的标识符都以ZLG7289_开头,不必担心命名冲突问题 程序结构清晰,思路明确,结合ZLG7289的数据手册很容易理解 用法: 1、重新定义I/O接口 2、如果CPU的主频比较高,则要适当调整延时,详见ZLG7289_Delay()函数 3、在用户程序中包含本头文件 4、在main()函数的开始处添加初始化函数ZLG7289_Init() 5、以后在程序中可以直接使用ZLG7289的用户指令集 6、读取键盘扫描码使用函数ZLG7289_Key(),查询方式、中断方式皆可

    标签: 7289 ZLG 程序 C51

    上传时间: 2013-12-09

    上传用户:zhangzhenyu

  • 该头文件配合key.c

    该头文件配合key.c,在main函数中调用key.c,都文件中添加key.h,使软件更清晰,一目了然

    标签: key 头文件

    上传时间: 2014-01-04

    上传用户:yuanyuan123

  • 用C语言编写ARM程序时

    用C语言编写ARM程序时,执行的第一条指令,并不在main函数中。当我们生成一个C程序的可执行文件时,编译器总是在我们的代码前加一段固定的代码——crt0.o,它是编译器自带的一个文件。此段代码设置C程序的堆栈等,然后调用main函数。很可惜,在我们的裸板上,这段代码无法执行,所以我们得自己写一个。这段代码很简单,只有3条指令。

    标签: ARM C语言 编写 程序

    上传时间: 2016-11-25

    上传用户:zhangyigenius

  • AMOP 0.3 is an Automatic Mock Object for C++. By using ABI and template techniques, it can simulate

    AMOP 0.3 is an Automatic Mock Object for C++. By using ABI and template techniques, it can simulate a pseudo-"Reflection" which is normally not support in C++ . The main differences between AMOP and other mock object library is that, users DO NOT need to implement the interface of the object which to mock...

    标签: techniques Automatic template simulate

    上传时间: 2013-12-31

    上传用户:rocwangdp

  • 用c语言实现的des加密解密程序源码

    用c语言实现的des加密解密程序源码,包含一个des头文件和一个des源文件以及一个main函数源文件

    标签: des c语言 加密 解密

    上传时间: 2013-12-28

    上传用户:lmeeworm