如何检查属性的值是按升序排列还是重复?

时间:2018-04-22 07:15:56

标签: c# xml

以下是xml示例

<?xml version="1.0"?>
<catalog>
    <book id="bk101">
        <author>Gambardella, Matthew</author>
        <title>XML Developer's Guide</title>
        <genre>Computer</genre>
        <price>44.95</price>
        <publish_date>2000-10-01</publish_date>
        <description>An in-depth look at creating applications
        with XML.</description>
    </book>
    <book id="bk102">
        <author>Ralls, Kim</author>
        <title>Midnight Rain</title>
        <genre>Fantasy</genre>
        <price>5.95</price>
        <publish_date>2000-12-16</publish_date>
        <description>A former architect battles corporate zombies,
            an evil sorceress, and her own childhood to become queen
        of the world.</description>
    </book>
    <book id="bk102">
        <author>Corets, Eva</author>
        <title>Maeve Ascendant</title>
        <genre>Fantasy</genre>
        <price>5.95</price>
        <publish_date>2000-11-17</publish_date>
        <description>After the collapse of a nanotechnology
            society in England, the young survivors lay the
        foundation for a new society.</description>
    </book>
    <book id="bk103">
        <author>Corets, Eva</author>
        <title>Oberon's Legacy</title>
        <genre>Fantasy</genre>
        <price>5.95</price>
        <publish_date>2001-03-10</publish_date>
        <description>In post-apocalypse England, the mysterious
            agent known only as Oberon helps to create a new life
            for the inhabitants of London. Sequel to Maeve
        Ascendant.</description>
    </book>
</catalog>

如何检查节点<book>中属性 id 的值是否按升序排列,同时以最简单的方式查找其中是否存在重复值。 我做了

static void Main(string[] args)
{

    XDocument myfile = XDocument.Parse(File.ReadAllText(@"D:\sample_xml.xml"));
    var check = myfile.Descendants("book").Select(a => a.Attribute("id").Value.Substring(2)).ToArray();

    if (IsSortedAscending(check))
    {
        Console.WriteLine("Sorted in Ascending order");
    }
    else
    {
        Console.WriteLine("Check Sequence");
    }

    Console.ReadLine();
}


public static bool IsSortedAscending(string[] arr)
{
    for (int i = arr.Length - 2; i >= 0; i--)
    {
        if (arr[i].CompareTo(arr[i + 1]) > 0)
        {
            return false;
        }
    }
    return true;
}

但它没有说明重复的值...我该怎么做?

此外,是否可以在属性 id ,e.x中找到缺失值(如果有)。如果 bk109 且下一个 bk112 ,则程序将显示 bk110 bk111 缺失。

2 个答案:

答案 0 :(得分:1)

你已经差不多了 - “严格提升,没有重复”和“提升,允许重复”之间的唯一区别就是你在比较结果为0时所做的事情(即价值与前一个相同)一个)。

如果比较结果为IsSortedAscending而非false,您只需将>= 0方法更改为> 0

public static bool IsSortedAscending(string[] arr)
{
    for (int i = arr.Length - 2; i >= 0; i--)
    {
        // Fail if this ID is equal to or bigger than the next one.
        if (arr[i].CompareTo(arr[i + 1]) >= 0)
        {
            return false;
        }
    }
    return true;
}

(您也可以使用SkipZip作为成对比较元素的替代方式,但这是一个稍微不同的事情。)

请注意,如果您的号码长度不同,目前您的代码可能会失败。例如,考虑ID“bk99”和“bk100”。这将比较“99”和“100”作为字符串并确定“99”在“100”之后。

如果你的ID总是真的是“bk”后跟一个整数,我会提前解析它们:

var ids = myfile.Descendants("book")
                .Select(a => a.Attribute("id").Value.Substring(2))
                .Select(id => int.Parse(id))
                .ToArray();

然后,您可以将方法更改为接受int[]而不是string[]

此时,检查“丢失”ID也要容易得多 - 以字符串形式,没有真正的“缺失”ID概念,因为你可以拥有“bk101”,“bk101a”,“bk101c” - 是“bk101b”在那里失踪?如果是这样,那么“bk101aa”呢?使用整数,它更简单。

获得整数ID数组后,可以使用数组的长度来检查是否缺少任何值:

if (ids.Length > 0 ids.Length - 1 != ids.Last() - ids.First())
{
    Console.WriteLine("At least one ID is missing");
}

这不会告诉你缺少哪个 ID。

答案 1 :(得分:-1)

我只是对元素进行排序并输入字典:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml;
using System.Xml.Linq;

namespace ConsoleApplication1
{
    class Program
    {
        const string FILENAME = @"c:\temp\test.xml";
        static void Main(string[] args)
        {
            XDocument doc = XDocument.Load(FILENAME);

            XElement catalog = doc.Root;

            Dictionary<string, List<XElement>> dict = catalog.Elements("book")
                .OrderBy(x => (string)x.Attribute("id"))
                .ThenBy(x => (DateTime)x.Element("publish_date"))
                .GroupBy(x => (string)x.Attribute("id"), y => y)
                .ToDictionary(x => x.Key, y => y.ToList());
        }
    }
}