摘要: #include#include#include #define M 100struct score //学生成绩信息结构体定义 { int ... 阅读全文
posted @ 2018-03-29 18:22 IT蓝月 阅读(158) 评论(0) 推荐(0)
摘要: #include#include#includetypedef struct Node { int data; Node *next;}node;typedef struct SeqQueue { Node* ... 阅读全文
posted @ 2018-03-29 18:19 IT蓝月 阅读(85) 评论(0) 推荐(0)
摘要: #include#includestruct Node { int data; Node *next;};struct Queue { Node* head; Node* rear;};Queue* creat... 阅读全文
posted @ 2018-03-29 18:17 IT蓝月 阅读(88) 评论(0) 推荐(0)
摘要: #include#includetypedef struct Node{ int data; struct Node* pnext;}node;typedef struct Stack{ node* top;}s... 阅读全文
posted @ 2018-03-29 18:16 IT蓝月 阅读(104) 评论(0) 推荐(0)
摘要: #include"stdio.h"#include"windows.h"#include"conio.h"#define M 3#define row 20int m[row][row];int n[M][M] ... 阅读全文
posted @ 2018-03-29 18:15 IT蓝月 阅读(205) 评论(0) 推荐(0)
摘要: #include#include#define num 8struct nearnode{ int order; nearnode* pnext;};struct topnode{ char data[20]... 阅读全文
posted @ 2018-03-29 18:12 IT蓝月 阅读(391) 评论(0) 推荐(0)
摘要: #include #include using namespace std;DWORD WINAPI lan(void* p){ while(1){ cout<<"次线程运行中\n"<... 阅读全文
posted @ 2018-03-29 18:11 IT蓝月 阅读(85) 评论(0) 推荐(0)
摘要: #include#include#include#includetypedef struct student{ char name[10]; int num; int score; struct student*... 阅读全文
posted @ 2018-03-29 18:10 IT蓝月 阅读(250) 评论(0) 推荐(0)
摘要: /*亲测DEVC++编译器完美执行*/#define _CRT_SECURE_NO_WARNINGS#include#include#include#includevoid readini(FILE **fphe... 阅读全文
posted @ 2018-03-29 18:08 IT蓝月 阅读(122) 评论(0) 推荐(0)
Live2D