上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 23 下一页
摘要: 1.#include <stdio.h>#include <stdlib.h>#include "SeqQueue.h"/* run this program using the console pauser or add your own getch, system("pause") or inp 阅读全文
posted @ 2016-12-08 14:31 王小波私人定制 阅读(481) 评论(0) 推荐(0) 编辑
摘要: 1.#include <stdio.h>#include <stdlib.h>#include "LinkQueue.h"/* run this program using the console pauser or add your own getch, system("pause") or in 阅读全文
posted @ 2016-12-08 14:15 王小波私人定制 阅读(197) 评论(0) 推荐(0) 编辑
摘要: 1.#include <stdio.h>#include <stdlib.h>#include "SeqQueue.h"/* run this program using the console pauser or add your own getch, system("pause") or inp 阅读全文
posted @ 2016-12-08 14:06 王小波私人定制 阅读(183) 评论(0) 推荐(0) 编辑
摘要: 从事嵌入式研发行业十年,认为学习就是要不断的吸纳知识,在研发过程中,经常会遇到一些问题,这种发现问题并解决问题的过程就是进步。 为什么选择学习嵌入式? 嵌入式系统无疑是当前最热门最有发展前途的IT应用领域之一,同时也是当今IT领域仅存的几个金领职位之一。当前的中国IT人才面临严重的“后继乏人”, 而 阅读全文
posted @ 2016-12-08 12:51 王小波私人定制 阅读(4640) 评论(2) 推荐(0) 编辑
摘要: 1.实现八皇后 #include <stdio.h>#define N 8//表示 坐标的平移typedef struct _tag_Pos{ int ios; int jos;} Pos;//棋盘 --边界不用!static char board[N+2][N+2];//坐标的初始化static 阅读全文
posted @ 2016-12-07 20:14 王小波私人定制 阅读(189) 评论(0) 推荐(0) 编辑
摘要: 1.//1 1 2 3 5 8 13 21...#include <stdio.h>int fibonacci(int n){ if( n > 1 ) { return fibonacci(n-1) + fibonacci(n-2); } else if( n == 1 ) { return 1; 阅读全文
posted @ 2016-12-07 19:57 王小波私人定制 阅读(295) 评论(0) 推荐(0) 编辑
摘要: 1.#include <stdio.h>void reverse(char* s){ if( (s != NULL) && (*s != '\0') ) { reverse(s + 1); printf(" %c", *s); }}int main(){ reverse("12345"); prin 阅读全文
posted @ 2016-12-07 19:27 王小波私人定制 阅读(222) 评论(0) 推荐(0) 编辑
摘要: 1.#include <stdio.h>#include <malloc.h>#include "LinkList.h"typedef struct _tag_LinkList{ LinkListNode header; int length;} TLinkList;LinkList* LinkLi 阅读全文
posted @ 2016-12-07 13:43 王小波私人定制 阅读(392) 评论(6) 推荐(1) 编辑
摘要: 1.#include <stdio.h>#include <malloc.h>#include "LinkList.h"typedef struct _tag_LinkList{ LinkListNode header; int length;} TLinkList;LinkList* LinkLi 阅读全文
posted @ 2016-12-07 13:31 王小波私人定制 阅读(336) 评论(0) 推荐(0) 编辑
摘要: 1.#include <stdio.h>#include <malloc.h>#include "LinkList.h"typedef struct _tag_LinkList{ LinkListNode header; int length;} TLinkList;LinkList* LinkLi 阅读全文
posted @ 2016-12-07 12:59 王小波私人定制 阅读(303) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 23 下一页
DON'T FORGET TO HAVE FUN