typescript
黄金一鸣
代码 代码
展开
-
冒泡排序
刚刚看到csdn发了个冒泡排序自己也想试试,就下下了如下代码,一遍过没有修改let a = [1, 2, 5, 8, 3, 3, 4, 6, 6]let maopao = (data) => { let b = 0; for (let i = 0; i < a.length; i++) { if (a[i] > a[i + 1]) { ...原创 2020-01-07 17:28:32 · 154 阅读 · 0 评论 -
typescript递归遍历
最近几天刚接触了node.js的回调函数下面直接上干货//先定义一下数据类型interfaceentity{id:number;title:string;children?:children[];}//定义子级数据类型interfacechildren{id:number;title:strin...原创 2019-09-17 15:36:57 · 4169 阅读 · 0 评论 -
typescript中tree类型数据转换成扁平型数据
//别着急慢慢来肯定能做出来的,下面我的思路给你,我用的是typescriptinterfaceentity{ id:number; title:string; children?:children[]; } interfacechildren{ id:number; title:...原创 2019-09-17 16:27:44 · 1285 阅读 · 0 评论 -
typescript递归将扁平型数据转成tree
先上代码,下面我在说我的思路const lists=[ { id: 3, title: '子级2',parentId:1 }, { id: 2, title: '子级1',parentId:1 }, { id: 1, title: '父级1' }, { id: 4, title: '父级2' }, { id: 5, title: '子级3', p...原创 2019-10-11 15:35:50 · 1072 阅读 · 0 评论