
C++程序
六灬道
这个作者很懒,什么都没留下…
展开
-
C++程序
一、统计元音字母和其他字母个数 #include "stdafx.h" #include <iostream> using namespace std; int main() { char cval; int a原创 2018-08-13 10:52:26 · 245 阅读 · 0 评论 -
链表常用操作--C++实现
一、头文件,每个结点包括数据和指针 #pragma once #include<iostream> struct Node { int data; Node *next; }; class Linlist { private: Node * Head; public: Linlist(); void CreatList1(int n); ...原创 2018-08-27 16:10:57 · 190 阅读 · 0 评论