摘要: 第五章 1.设树T的度为4,其中度为1,2,3和4的结点个数分别为4,2,1,1,则T中的叶子数为() 5 6 7 8 答案:选D 一棵含有n个结点的树,有n-1个分支,即 n = 1*4 + 2*2 + 3*1 + 4*1 + 1 = 16; 又由于 n = n0 + n1 + n2 + n3 + 阅读全文
posted @ 2021-11-04 23:19 南柯Dream丶 阅读(212) 评论(0) 推荐(0)
摘要: 1.通常我们提交代码时都不会提交node_modules文件夹,那么该如何在提交代码时不提交它呢?2.首先,在项目目录下打开git Bash Here,输入命令:touch .gitignore 完成后项目中会出现一个后缀名“.gitignore”为的文件,双击进去添加node_modules/即可 阅读全文
posted @ 2021-11-04 19:41 南柯Dream丶 阅读(566) 评论(0) 推荐(0)
摘要: /* * @Description: 静态资源目录搭建-index.js * @Version: 1.0 * @Autor: Nanke_南柯 * @Date: 2021-11-04 14:26:33 * @LastEditors: Nanke_南柯 * @LastEditTime: 2021-11 阅读全文
posted @ 2021-11-04 19:25 南柯Dream丶 阅读(267) 评论(0) 推荐(0)