12 2016 档案

摘要:音乐播放器源代码/******做着玩的,很简易,有打开,播放,暂停,退出等功能,只能播放本地音乐,没有实现联网功能,支持wav格式和MP3。*******/MusicPlayerDlg.cpp:// MusicPlayerDlg.cpp : implementation file//#include... 阅读全文
posted @ 2016-12-30 20:58 Obelia 阅读(831) 评论(0) 推荐(0)
摘要:循环队列源代码(C语言版)/*******简单实现了插入,删除,长度,退出等功能********/#include#include#define MAXSIZE 100//定义队列结构typedef struct Queue{ int * base; int front; int rear;}... 阅读全文
posted @ 2016-12-28 18:21 Obelia 阅读(223) 评论(0) 推荐(0)
摘要:链队列源代码(C语言版)/*********实现了初始化,插入,删除,销毁,退出等功能*********/#include#include//定义节点typedef struct QNode{ int data; struct QNode * next;}QNode,*QueuePtr;//... 阅读全文
posted @ 2016-12-27 22:39 Obelia 阅读(167) 评论(0) 推荐(0)