C语言
lhsfly
这个作者很懒,什么都没留下…
展开
-
有表头链表的基本操作
今天没事做,重温了一下单链表的基本操作,运行的平台是ubuntu14.04上的GCC。其中包括初始化单链表,向链表中添加元素,从链表中删除元素,遍历链表并打印,按元素查找,销毁链表。#include<stdio.h>#include<stdlib.h>typedef struct node{ int ID; int data; struct node *pNext;原创 2016-04-02 18:38:32 · 1339 阅读 · 0 评论 -
CRC-16/MODBUS C语言算法 在线验证成功!!!!
#include <stdio.h>#include <stdint.h>static const uint8_t auchCRCHi[] = {0x00, 0xC1, 0x81, 0x40, 0x01, 0xC0, 0x80, 0x41, 0x01, 0xC0, 0x80, 0x41, 0x00, 0xC1, 0x81,0x40, 0x01, 0xC0, 0x...原创 2018-11-14 19:26:16 · 4923 阅读 · 1 评论