- 博客(12)
- 收藏
- 关注
原创 C++ Primer Plus 第四章 类型
C++类型 #inlucde<iostream> using namespace std; int main(){ cout << "Hello World"; return 0; }复合类型string类操作s1+s2 string类的合并,类似于数组字符串的strcpy()函数。s1+=s2 string加,类似于数组字符串的strcat()函数。使用string读取字符串读取一个单词时cin
2021-12-18 23:51:57 922
原创 平衡二叉树的c语言实现,
一些栈,队列和树的基本基本操作BiTree.h#include<stdio.h>#include<stdlib.h>typedef int Elemtype;typedef struct BiNode{ Elemtype data; int val;//平衡二叉树的平衡因子 struct BiNode *lchild,*rchild;} BiNode, *BiTree;typedef BiTree ElemType_Q;typedef .
2021-07-25 10:54:53 114
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人