上一页 1 ··· 4 5 6 7 8
摘要: SListNode.h#ifndef _SLISTNODE_H_#define _SLISTNODE_H_#include#include#include#include#includetypedef int D... 阅读全文
posted @ 2018-01-01 17:01 VictorChang 阅读(60) 评论(0) 推荐(0) 编辑
摘要: SeqList.h#ifndef _SEQLISTH_H_#define _SEQLISTH_H_#include#include#includetypedef int Datatype; typedef str... 阅读全文
posted @ 2017-12-13 16:08 VictorChang 阅读(125) 评论(0) 推荐(0) 编辑
摘要: Mine_Clear.h#ifndef _MINE_CLEAR_H_#include#include#include#include#define _MINE_CLEAR_H_#define ROW 9int g... 阅读全文
posted @ 2017-12-08 21:00 VictorChang 阅读(199) 评论(0) 推荐(0) 编辑
摘要: #include#include void printPan(char arr[][3]){ int i=0; printf(" ——————\n"); printf("| %c | %c | %c |\n",a... 阅读全文
posted @ 2017-12-08 15:50 VictorChang 阅读(116) 评论(0) 推荐(0) 编辑
摘要: 二分查找的非递归与递归实现:#includeint binarry_Search(int arr[], int len, int value){ //采用左闭右闭区间方式 int left=0,right=le... 阅读全文
posted @ 2017-12-08 14:53 VictorChang 阅读(337) 评论(0) 推荐(0) 编辑
摘要: connver_comment.h#ifndef _CONNVER_COMMENT_H_#define _CONNVER_COMMENT_H_#define INPUTFILE "input.txt"#defin... 阅读全文
posted @ 2017-12-07 17:34 VictorChang 阅读(152) 评论(0) 推荐(0) 编辑
摘要: >结构体类型创建 第一种方法:struct A{ int a; char b;}第二种方法:typedef struct B{ int a; char b; }B结构体的自引用:typed... 阅读全文
posted @ 2017-11-28 22:18 VictorChang 阅读(76) 评论(0) 推荐(0) 编辑
摘要: 指针数组int a=10,b=20;int *arr[2]={&a,&b};//指针数组,数组 printf("%p %p\n\n",arr[0],&a);// 000000000062FE3C 000000... 阅读全文
posted @ 2017-11-18 12:59 VictorChang 阅读(132) 评论(0) 推荐(0) 编辑
摘要: “高校人员信息管理系统设计” 1、问题描述 某高校有四类员工教师、实验员、行政人员教师兼行政人员共有的信息包括编号、姓名、性别、年龄等。其中教师还包含的信息有所在系部、专业、职称实验员还包含的信息由所在实验室、职务行政人员还包含的信息有政治面貌、职称等。 2、功能要求 (1)添加功能程序能 阅读全文
posted @ 2017-09-13 13:32 VictorChang 阅读(6612) 评论(1) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8