- 博客(2)
- 收藏
- 关注
原创 二叉树的层序遍历(c语言版)
#include <stdio.h> #include <stdlib.h> #include <assert.h> struct node { struct node *l,*r;//left child and right child int data; }; //定义一个队列的节点 typedef struct dqueen { struct dqueen *next; struct node *data; }dqueen; //队列的管理 typed
2022-01-03 18:07:41
1041
原创 c语言实现在任意文件长度的任意位置插入任意长度的字符串
/**{{{ * Copyright (C) 2021YunHai Tech. Ltd * All rights reserved. * * FileName :xxx.c * Author :wanghaiyun * Email :amn2811@163.com * Date :2021-02-12 14:55:51 * Version :1.0 * Description :
2021-02-13 21:43:49
1956
1
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人