害羞绿草

文章
6
资源
0
加入时间
2年10月24天

二叉树的基本操作--1

/**二叉树基本操作 范例*///需要的头文件#include #include //节点的结构类型typedef struct BiNode{   int data;   struct BiNode * Lchild;//左孩子   struct BiNode * Rchild;//右孩子}BiNode,*BiTree;/*

JS连字符转驼峰

let str ="get-image-data"let alet b=[]a = str.split("-")for(let i=0;i<a.length;i++){ if(i===0){ b.push(a[i]) }else{ // 两种方法 b.push(a[i].replace(a[i][0],a[i][0].toUpperCase())) // b.push(a[i