- 博客(21)
- 收藏
- 关注
原创 【无标题】
#include<bits/stdc++.h> using namespace std; typedef struct tree{ int date; struct tree * l; struct tree * r; }tree; tree * create() { int date; tree * t; cin>>date; if(date==0) return NULL; else { ...
2022-01-24 21:27:47
143
原创 1.8总结
1单词30个及复习,长篇阅读一单元 2高数微分方程预习 3蓝桥杯试题,Java预习,二叉树学习。 package student1; import student.Student; import java.io.BufferedReader; import java.io.File; import java.io.FileReader; import java.io.FileWriter; import java.io.BufferedWriter; import java.io.IOExcepti
2022-01-08 21:33:47
341
原创 1.6总结
1.记忆单词30个。 2.对二叉树的进一步学习。 先序遍历,中序遍历,后序遍历。 先序,中序,后序构造。 并未熟练掌握。 以及如何求解二叉树的深度。 3。高数微分方程的学习。
2022-01-06 21:40:14
372
原创 第三周总结
1. 链表的深入学习,自写链表删除,插入程序。 struct link* delete( int n ,struct link *h) { struct link *p,*q,*r; p=h; if(n==1) { h=p->next; size--; } if(n>1&&n<=size) { for(int i=2;i<n;i++) { ...
2021-12-19 19:18:40
188
原创 第二周总结
链表基本操作,创建,遍历,删除,插入,重排。 struct Node { int a; //数据域 struct Node* next; //指针域(指向节点的指针) };节点的创建。 void AddListTill(int a ) { struct Node* temp=(struct Node*)malloc(sizeof(struct Node)); temp->a=a; temp-...
2021-12-12 13:15:25
529
原创 第一周总结
1 c++简单输入输出cin及cout,格式控制未完全掌握。 2c语言函数atoi及sscanf的认识。 #include <stdlib.h> #include <stdio.h> int main() { char a[] = "-100"; char b[] = "101"; int c; c = atoi(a) + atoi(b); printf("c = %d\n", c); return 0; } sscanf(字符串的名字,"%d",整型变量的名字)
2021-12-04 20:14:18
730
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人
RSS订阅