gpt4 book ai didi

c# - 使用 CSV 文件

转载 作者:行者123 更新时间:2023-11-30 16:44:28 25 4
gpt4 key购买 nike

我已经工作并试图解决这个问题可能整整一周了,此时我想知道我是否可以在不深入研究 C# 语言的情况下解决它,而且我对C#,以及处理 CSV 文件并对它们进行排序和组织,所以我对这方面的整个范围都相当缺乏经验。

我正在尝试按字母顺序对 CSV 文件进行排序,隐藏需要隐藏的项目,并根据其父元素、子元素和孙元素使它们具有深度级别。

我已经成功地完成了其中的几个,并且编写了一些可以工作的代码,但我不知道如何按字母顺序对它们进行排序并根据它们所属的父子关系为它们提供适当的深度层。

这是我一直试图组织的模型 CSV:

ID;MenuName;ParentID;isHidden;LinkURL
1;Company;NULL;False;/company
2;About Us;1;False;/company/aboutus
3;Mission;1;False;/company/mission
4;Team;2;False;/company/aboutus/team
5;Client 2;10;False;/references/client2
6;Client 1;10;False;/references/client1
7;Client 4;10;True;/references/client4
8;Client 5;10;True;/references/client5
10;References;NULL;False;/references

我已经用分号分隔了项目,我已经显示了需要显示的项目,但是我没有按照我应该的方式对它们进行排序。

排序应该是这样的:

Company
About Us
Team
Mission
References
Client 1
Client 2

我试图通过获取斜杠的索引来对它们进行排序或按该顺序显示它们,但是代码重现的不是它应该如何显示,而且,它看起来像这样:

Company
About Us
Mission
Team
Client 2
Client 1
References

在另一个尝试中,我递归地将他们的父 ID 与 ID 进行匹配,控制台显示如下所示:

Company
About Us
Mission
Team
Client 2
Client 1
References

我试过和一个 friend 一起解决这个问题,即使他也不知道如何解决这个问题,因为这段代码应该适用于使用不同父 ID 的不同文件。

最重要的是,我无法将它们索引到数组,因为只有索引 0,或者索引基于它们的字母,或者如果我输入索引位置 1 会使控制台崩溃。

这是我未能对它们进行排序的第一部分的代码:

class Program
{
static void Main(string[] args)
{
StreamReader sr = new StreamReader(@"Navigation.csv");
string data = sr.ReadLine();

while (data != null)
{
string[] rows = data.Split(';');
int id;
int parentId;
bool ids = Int32.TryParse(rows[0], out id);
string name = rows[1];
bool pIds = Int32.TryParse(rows[2], out parentId);
string isHidden = rows[3];
string linkUrl = rows[4];
string[] splitted = linkUrl.Split('/');

if (isHidden == "False")
{
List<CsvParentChild> pIdCid = new List<CsvParentChild>()
{
new CsvParentChild(id, parentId, name, linkUrl)
};
}

data = sr.ReadLine();
}
}
}

class CsvParentChild
{

public int Id;
public int ParentId;
public string Name;
public string LinkUrl;
public List<CsvParentChild> Children = new List<CsvParentChild>();

public CsvParentChild(int id, int parentId, string name, string linkUrl)
{

Id = id;
ParentId = parentId;
Name = name;
LinkUrl = linkUrl;
string[] splitted = linkUrl.Split(new char[] { '/' }, StringSplitOptions.RemoveEmptyEntries);

if (splitted.Length == 1)
{
Console.WriteLine($". { name }");
}
else if (splitted.Length == 2)
{
Console.WriteLine($".... { name }");
}
else if (splitted.Length == 3)
{
Console.WriteLine($"....... { name }");
}
}
}

这是第二部分:

class Program
{
static void Main(string[] args)
{
// Get the path for the file
const string filePath = @"../../Navigation.csv";

// Read the file
StreamReader sr = new StreamReader(File.OpenRead(filePath));
string data = sr.ReadLine();

while (data != null)
{

string[] rows = data.Split(';');

ListItems lis = new ListItems();

int id;
int parentId;

// Get the rows/columns from the Csv file
bool ids = Int32.TryParse(rows[0], out id);
string name = rows[1];
bool parentIds = Int32.TryParse(rows[2], out parentId);
string isHidden = rows[3];
string linkUrl = rows[4];

// Split the linkUrl so that we get the position of the
// elements based on their slash
string [] splitted = linkUrl.Split(new char[] { '/' }, StringSplitOptions.RemoveEmptyEntries);

// If item.isHidden == "False"
// then display the all items whose state is set to false.
// If the item.isHidden == "True", then display the item
// whose state is set to true.
if (isHidden == "False")
{
// Set the items
ListItems.data = new List<ListItems>()
{
new ListItems() { Id = id, Name = name, ParentId = parentId },
};

// Make a new instance of ListItems()
ListItems listItems = new ListItems();

// Loop through the CSV data
for (var i = 0; i < data.Count(); i++)
{
if (splitted.Length == 1)
{
listItems.ListThroughItems(i, i);
}
else if (splitted.Length == 2)
{
listItems.ListThroughItems(i, i);
}
else
{
listItems.ListThroughItems(i, i);
}
}
}

// Break out of infinite loop
data = sr.ReadLine();
}
}

public class ListItems
{
public int Id { get; set; }
public string Name { get; set; }
public int ParentId { get; set; }
public static List<ListItems> data = null;
public List<ListItems> Children = new List<ListItems>();

// http://stackoverflow.com/a/36250045/7826856
public void ListThroughItems(int id, int level)
{
Id = id;

// Match the parent id with the id
List<ListItems> children = data
.Where(p => p.ParentId == id)
.ToList();

foreach (ListItems child in children)
{
string depth = new string('.', level * 4);
Console.WriteLine($".{ depth } { child.Name }");
ListThroughItems(child.Id, level + 1);
}
}
}
}

最佳答案

对于每一项,你需要构造一种由id组成的“排序数组”。排序数组由项目祖先的 id 组成,按照从最远到最远的顺序排列。对于“团队”,我们的排序数组是 [1, 2, 4]

这里是每一项的排序数组:

[1]
[1, 2]
[1, 3]
[1, 2, 4]
[10, 5]
[10, 6]
[10, 7]
[10, 8]
[10]

有了这个之后,对项目进行排序就很简单了。比较两个“排序数组”时,从每个数组中的数字开始。如果它们不同,则根据第一个数字的值排序即可。如果它们相同,请查看第二个数字。如果没有第二个数字,则按数组的长度排序,即,无先于有。

应用这个算法,我们得到:

[1]
[1, 2]
[1, 2, 4]
[1, 3]
[10]
[10, 5]
[10, 6]
[10, 7]
[10, 8]

之后,根据标志隐藏项目。我把它留给你,因为它很简单。深度很简单:就是排序数组的长度。

关于c# - 使用 CSV 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43442902/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com