- 博客(3)
- 收藏
- 关注
原创 ext4文件系统删除文件的流程
删除一个文件时文件只是将文件占用的位置释放掉了,而文件的数据还是存在的。后续如果写入数据,就会覆盖对应的位置。
2023-06-07 19:14:18
1607
2
原创 2020-09-06
输出邻接矩阵中从第head行出发再回到第head行的环。java实现import java.util.Scanner;/*50 1 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 1 0 1 1 0 04*/public class Main { private int[][] arr;//记录输入数组 private int num;//记录矩阵长度 public int head; public void input(){
2020-09-06 23:01:41
259
1
原创 二叉排序树的实现
包括二叉排序树的增加、遍历和删除#include <stdio.h>#include <stdlib.h>typedef int myType;/*二叉排序树*/typedef struct structTree{ myType node; struct structTree* leftNode; struct structTree* rightNode;}Btree;Btree* init();void addChild(Btree* tr
2020-07-08 19:12:30
492
1
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人