c/c++编程
文章平均质量分 95
name1439
_Tyrion
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
c/c++通讯录
第二个程序是C语言实训的程序其实和第一个学生成绩管理系统程序差不多,只是多了文件功能!Copyright ©Rushierer#include #include #include #define N 60typedef struct s_teleBook{ int number; /*编号*/ char name[15]; /*姓名*/ char phone[12原创 2017-01-20 19:09:57 · 1559 阅读 · 0 评论 -
c/c++学生成绩管理系统
**感觉自己将来要做程序员了,所以来优快云把自己在学习过程中编的东西记录下来。第一个程序是C语言实训的程序----学生成绩管理系统。**Copyright ©Rushierer#include<stdio.h>#include<string.h>#include<stdlib.h>#define N 60typedef struct student{ char num[10原创 2017-01-20 19:22:37 · 1750 阅读 · 2 评论 -
基于快速排序的英文书籍单词表生成(C/C++实现)
本程序为使用快速排序实现的英文单词表生成大代码,可以按单词出现的频次以及按单词的字母进行排序,#include <stdio.h>#include <stdlib.h>#include <iostream>#include <iomanip>#include <string>#include <string.h>...原创 2018-04-07 17:26:48 · 2560 阅读 · 2 评论 -
使用动态规划算法实现文献查重(C/C++实现)
本篇文章是描述使用动态规划算法实现文献查重(C/C++实现)的程序。#include <stdio.h>#include <stdlib.h>#include <iostream>#include <iomanip>#include <string>#include <string.h>#include <s...原创 2018-07-06 22:26:31 · 11357 阅读 · 7 评论 -
C/C++ 实现 快速排序
#include <stdlib.h>#include <stdio.h>#include <iostream>#include <fstream>#include <iomanip>#include <string>#include <sstream>#include <cstdli原创 2018-07-19 23:47:05 · 439 阅读 · 0 评论
分享