当前位置: 首页 > 面试题库 >

如何有效过滤保留其现有结构的树形视图?

云默
2023-03-14
问题内容

我有一个树状的JSON,应该对其进行过滤,并且结果应保留该树状结构。

var tree = [
  {
    text: "Parent 1",
    nodes: [
      {
        text: "Child 1",
        type: "Child",
        nodes: [
          {
            text: "Grandchild 1"
            type: "Grandchild"
          },
          {
            text: "Grandchild 2"
            type: "Grandchild"
          }
        ]
      },
      {
        text: "Child 2",
        type: "Child"
      }
    ]
  },
  {
    text: "Parent 2",
    type: "Parent"
  },
  {
    text: "Parent 3",
    type: "Parent"
  }
];

范例:

1)如果搜索查询是父级1

预期结果 :

[
  {
    text: "Parent 1",
    nodes: [
      {
        text: "Child 1",
        type: "Child",
        nodes: [
          {
            text: "Grandchild 1"
            type: "Grandchild"
          },
          {
            text: "Grandchild 2"
            type: "Grandchild"
          }
        ]
      },
      {
        text: "Child 2",
        type: "Child"
      }
    ]
  }
]

2)如果搜索查询是Child 1

预期结果 :

[
  {
    text: "Parent 1",
    nodes: [
      {
        text: "Child 1",
        type: "Child",
        nodes: [
          {
            text: "Grandchild 1"
            type: "Grandchild"
          },
          {
            text: "Grandchild 2"
            type: "Grandchild"
          }
        ]
      }
    ]
  }
]

3)如果搜索查询是孙子2

预期结果 :

[
  {
    text: "Parent 1",
    nodes: [
      {
        text: "Child 1",
        type: "Child",
        nodes: [
          {
            text: "Grandchild 2"
            type: "Grandchild"
          }
        ]
      }
    ]
  }
]

我需要根据节点的水平(以保持树形结构 类型 在这里)。到目前为止,我已尝试递归过滤,但无法重新映射结果。

angular.module("myApp",[])
   .filter("filterTree",function(){
       return function(items,id){
          var filtered = [];
          var recursiveFilter = function(items,id){
              angular.forEach(items,function(item){
                 if(item.text.toLowerCase().indexOf(id)!=-1){
                    filtered.push(item);
                 }
                 if(angular.isArray(item.items) && item.items.length > 0){
                    recursiveFilter(item.items,id);              
                 }
              });
          };
          recursiveFilter(items,id);
          return filtered;
       }; 
    });
});

我的JSON非常大,因此基于类型的重新映射应在过滤器本身中完成。请指教。


问题答案:

您可以使用嵌套递归方法并过滤树,同时尊重找到的项目。

此解决方案不会更改原始数据。

function filter(array, text) {

    const getNodes = (result, object) => {

        if (object.text === text) {

            result.push(object);

            return result;

        }

        if (Array.isArray(object.nodes)) {

            const nodes = object.nodes.reduce(getNodes, []);

            if (nodes.length) result.push({ ...object, nodes });

        }

        return result;

    };



    return array.reduce(getNodes, []);

}



var tree = [{ text: "Parent 1", nodes: [{ text: "Child 1", type: "Child", nodes: [{ text: "Grandchild 1", type: "Grandchild" }, { text: "Grandchild 2", type: "Grandchild" }] }, { text: "Child 2", type: "Child" }] }, { text: "Parent 2", type: "Parent" }, { text: "Parent 3", type: "Parent" }];



console.log(filter(tree, 'Parent 1'));

console.log(filter(tree, 'Child 1'));

console.log(filter(tree, 'Grandchild 2'));


.as-console-wrapper { max-height: 100% !important; top: 0; }


 类似资料:
  • 所以我有两到三棵树,它们是在执行一些代码时生成的。此树的每个节点都有一个属性,即它至少有0个子节点,最多有8个子节点。我猜你可以得到这样一个完整的树的图片,在0级有一个根节点。在1级8个节点在2级64个节点,以此类推。父节点的每个子节点的编号从0到7,我在java中将其存储为字节整数类型,顺便说一句,我在java中实现了这一点。 现在我需要合并这两到三棵树,我已经生成,我这样做的水平明智完全不考虑

  • 我想清除所有筛选规则,但保留筛选本身。 有没有直接快速的方法去做呢? 我找到的代码是: 它获取筛选器对象,我对筛选器#的选项数量是有限的。 注意:删除此筛选器,但我需要保留它。

  • 问题内容: 所以,我的问题是,我想构建这两个表的树: 树应该看起来像: p p_0 p_0_0 p_0_1 p_0_1_0 p_0_1_1 q 有人可以帮我解决递归解决方案吗? 问题答案: 为此,您不需要在数据库中创建2个表,您可以仅从一个表中进行维护,如下所示 生成的数组将像 您需要使用下面的递归函数来实现它 该算法非常简单: 取所有元素的数组和当前父代的ID(最初为0 / nothing /

  • 题目描述 希望将上面数组用js转化成下面格式,请问如何实现呢

  • 扁平数组的结构如上,每个目录下都可以添加数据 如何将这个数组转成树形的结构啊,转成如下的形式 目录层级的name就取对应的 xxxLevelStr

  • 树形结构有两种表示方法:子表表示法(嵌套)和父指针表示法(扁平)。 Tree 将两者进行了整合,输出一个扁平的结构,一个节点既通过 pId(指向父节点的唯一标志)建立与父节点关系,又通过 children(数组,存储子节点的唯一标志)建立与子节点的关系。 一个树形结构,为了方便处理,通常需要具备以下特点: 一个扁平的数组结构很重要,在需要获取某个节点时,可以仅通过一次循环快速找到该节点。Tree