震动流沙

文章
3
资源
0
加入时间
3年0月9天

先序创建二叉树及三种遍历

#include<stdio.h>#include<stdlib.h>int max = 0;struct node{ int data; struct node *left; struct node *right;};struct node *create(struct node *newNode){//先序创建二叉树 char data; sca

nacos的安装(win10)

下载后解压文件(https://github.com/alibaba/nacos/releases/download/1.3.2/nacos-server-1.3.2.zip) 命令行cmd进去到解压文件的bin目录下 启动nacosstartup.cmd -m standalone 浏览器输入链接地址(http://localhost:8848/nacos),可以看到nacos的首页 默认用户名密码均为nacos,输入后登录 进入nacos控制台界面,我们就可以使用nacos开发了...