递归方法实现如下图:c# 或LINQ 实现都可

.Net技术 码拜 8年前 (2016-09-16) 1234次浏览
集合:
Id   Name    Parent    ParentName
001  李四    000       张三
002  王五    001       李四
003  赵六    002       王五
004  孙七    003       赵六
101  小二    100       小一
102  小三    101       小二
201  红太郎  200       灰太狼
结果:
004  孙七    000       张三
102  小三    100       小一
201  红太郎  200       灰太狼
解决方案

80

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            List<string> s = @"001 李四 000 张三
002 王五 001 李四
003 赵六 002 王五
004 孙七 003 赵六
101 小二 100 小一
102 小三 101 小二
201 红太郎 200 灰太狼".Split(new string[] { "\r\n" }, StringSplitOptions.None).ToList();
            List<List<string>> list = new List<List<string>>();
            while (s.Count > 0)
            { 
                List<string> sublist = new List<string>();
                sublist.Add(s[0]);
                s.Remove(s[0]);
                string s1 = null, s2 = null;
                do
                {
                    s1 = s.FirstOrDefault(x => x.Split(" ")[0] == sublist.First().Split(" ")[2]);
                    if (s1 != null) { sublist = new string[] { s1 }.Concat(sublist).ToList(); s.Remove(s1); }
                    s2 = s.FirstOrDefault(x => x.Split(" ")[2] == sublist.Last().Split(" ")[0]);
                    if (s2 != null) { sublist.Add(s2); s.Remove(s2); }
                }
                while (s1 != null || s2 != null);
                list.Add(sublist);
            }
            foreach (var item in list)
            {
                Console.WriteLine(item.Last().Split(" ")[0] + " " + item.Last().Split(" ")[1] + " " + item.First().Split(" ")[2] + " " + item.First().Split(" ")[3]);
            }
        }
    }
}

CodeBye 版权所有丨如未注明 , 均为原创丨本网站采用BY-NC-SA协议进行授权 , 转载请注明递归方法实现如下图:c# 或LINQ 实现都可
喜欢 (0)
[1034331897@qq.com]
分享 (0)