- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在用 C# 创建一个树结构,我有一些特定的目标:
Tree
的用户时创建 new Tree
他们必须通过一种 ITreeComparer
, 用户知道 T
的类型并且必须创建正确的比较器。Tree
类创建 TreeNode
的所有实例调用者只添加 T
类型的值到 Tree
类(class)。 TreeNode
是私有(private)的并且是 Tree
的子类类 所以我需要一种方法将 IComparer 传递给 TreeNode
所以我做了ITreeComparer
静态。ITreeComparer
对于复杂类型的“T”,但我想让 ITReeComparer 从 IComparer 继承,这样就不需要 Tree 的用户不需要通过 ITreeComparer
当类型 T 是基本类型时,例如 double 和 int。我的问题:
Tree
中类(class)尽管 Tree
类处理自身的比较。我做了 ITreeComparision
属性(property) TreeNode
静态的,更好解决方案?我收到一条警告 TreeNode
定义 '==' 或 '!=' 但是不覆盖 'Object.Equals(object o) 和'Object.GetHasCode',为什么我想使用 Object.Equals使用 _comparer.Compare(x.Value, y.Value)
, _comparer
是个已通过 ITreeComparer
Tree
的实例创建者必须供应。
如果 ITreeComparer
将实现IComparer
我会检查一下吗如果我的_comparer is null
如果使用 IComparer
默认比较,作为 Tree
的用户不必传入 ITreeComparison
实现?
public interface ITreeComparer<in T>
{
int Compare(T x, T y);
}
public class Tree<T>
{
private TreeNode _root = null;
private ITreeComparer<T> _comparer = null;
public Tree(ITreeComparer<T> comparer)
{
_comparer = comparer;
}
public Tree(T value, ITreeComparer<T> comparer)
{
_root = new TreeNode(value,_comparer);
_comparer = comparer;
}
public T Add(T value)
{
var newNode = new TreeNode(value, _comparer);
if (_root == null)
{
_root = newNode;
return _root.Value;
}
else
{
var startEdgeDirection = EdgeDirection.Left;
if (_root > newNode)
startEdgeDirection = EdgeDirection.Right;
var parent = FindItemNodeParent(value, _root, startEdgeDirection);
}
return value;
}
private TreeNode FindItemNodeParent(T value, TreeNode current , EdgeDirection direction)
{
throw new NotImplementedException();
if (_comparer.Compare(current.Value, value) == 0)
return null;
if (direction == EdgeDirection.Left)
{
}
else
{
}
}
private TreeNode Search(T value, TreeNode current, EdgeDirection direction )
{
throw new NotImplementedException();
if (_comparer.Compare(current.Value, value) == 0)
return null;
if (direction == EdgeDirection.Left)
{
}
else
{
}
}
private enum EdgeDirection
{
Left,
Right
}
private class TreeNode
{
private static ITreeComparer<T> _comparer;
public TreeNode LeftEdge { get; set; }
public TreeNode RightEdge { get; set; }
public T Value { get; set; }
public TreeNode(ITreeComparer<T> comparer)
{
_comparer = comparer;
}
public TreeNode(T value, ITreeComparer<T> comparer)
{
Value = value;
_comparer = comparer;
}
public static bool operator < (TreeNode x, TreeNode y)
{
if (x == null)
return y == null;
return _comparer.Compare(x.Value, y.Value) < 0;
}
public static bool operator > (TreeNode x, TreeNode y)
{
if (x == null)
return y == null;
return _comparer.Compare(x.Value, y.Value) > 0;
}
public static bool operator == (TreeNode x, TreeNode y)
{
if (x == null)
return y == null;
return _comparer.Compare(x.Value, y.Value) == 0;
}
public static bool operator != (TreeNode x, TreeNode y)
{
if (x == null)
return y == null;
return _comparer.Compare(x.Value, y.Value) != 0;
}
}
更新
根据有用的 Stackoverflowers 的建议,我只使用 IComparable,我已经从 TreeNode 中删除了所有重载的比较运算符,并且我正在设置我的私有(private) IComparer<T> _comparer
至 Comparer<T>.Default
.这总是有效的,因为我添加了“where T: IComparable”,这意味着 Tree 的用户必须在他们的自定义 T 对象上实现 IComparable,对于 C# 原语,IComparable 已经实现,当 T 是 int 时,他们将不必实现 IComparable例如,他们将永远不需要传入 IComparer,因为必须始终为其类型 T 实现 IComparable。
public partial class Tree<T> where T : IComparable<T>
{
private TreeNode _root = null;
private IComparer<T> _comparer = null;
public Tree()
{
_comparer = Comparer<T>.Default;
}
public Tree(T value)
{
_root = new TreeNode(value);
_comparer = Comparer<T>.Default;
}
public T Add(T value)
{
var newNode = new TreeNode(value);
if (_root == null)
{
_root = newNode;
return _root.Value;
}
var startEdgeDirection = EdgeDirection.Left;
if (_comparer.Compare(_root.Value, value) > 0)
startEdgeDirection = EdgeDirection.Right;
var parent = FindItemNodeParent(value, _root, startEdgeDirection);
if (parent != null)
{
if (_comparer.Compare(parent.Value, value) > 0)
{
parent.RightDescendant = newNode;
}
else
{
parent.LeftDescendant = newNode;
}
}
return value;
}
private TreeNode FindItemNodeParent(T value, TreeNode current, EdgeDirection direction)
{
if (_comparer.Compare(current.Value, value) == 0)
return null;
if (direction == EdgeDirection.Left)
{
if (current.LeftDescendant == null)
return current;
if (_comparer.Compare(current.LeftDescendant.Value, value) > 0)
{
FindItemNodeParent(value, current.LeftDescendant, EdgeDirection.Right);
}
else
{
FindItemNodeParent(value, current.LeftDescendant, EdgeDirection.Left);
}
}
else
{
if (current.RightDescendant == null)
return current;
if (_comparer.Compare(current.RightDescendant.Value, value) > 0)
{
FindItemNodeParent(value, current.RightDescendant, EdgeDirection.Right);
}
else
{
FindItemNodeParent(value, current.RightDescendant, EdgeDirection.Left);
}
}
return null;
}
private TreeNode Search(T value, TreeNode current, EdgeDirection direction)
{
throw new NotImplementedException();
if (_comparer.Compare(current.Value, value) == 0)
return null;
if (direction == EdgeDirection.Left)
{
}
else
{
}
}
private enum EdgeDirection
{
Left,
Right
}
}
public partial class Tree<T>
{
private class TreeNode
{
public TreeNode LeftDescendant { get; set; }
public TreeNode RightDescendant { get; set; }
public T Value { get; set; }
public TreeNode(T value)
{
Value = value;
}
}
}
最佳答案
正如我在上面的评论中提到的,我不明白为什么你有接口(interface) ITreeComparer
.在我看来,它与 IComparer
完全一样, 所以你可以只使用 IComparer
相反。
也就是说……
- I wish there was a way to keep the ITreeComparer in the Tree class even though Tree class handles comparisons of itself. I made the ITreeComparision property in TreeNode static, any better solutions than this?
我同意制作它 static
是个坏主意。一个明显的问题是,这意味着您只能使用一种 Tree<T>
在一个过程中(即对于任何给定的 T
,只能有一种比较)。这意味着,例如,如果您有一个具有属性 Name
的类和 Id
, 你只能拥有按 Name
排序的树,或按 Id
排序的树, 但不是同时出现这两种树。
的确,有了这个字段static
在TreeNode<T>
类,它是 Tree<T>
中的实例字段毫无意义, 因为所有 Tree<T>
对象将使用相同的 TreeNode<T>
类型。
在我看来,你甚至公开 ITreeComparer
的唯一原因到 TreeNode
是为了允许重载比较运算符。如果你必须有那些运营商,我会继续做 _comparer
TreeNode<T>
中的非静态字段,甚至只是将其更改为对父级的引用 Tree<T>
对象(然后它可以从父级获取 _comparer
)。
但实际上,我并不认为比较运算符有多大帮助。你不妨调用_comparer
直接在 Tree<T>
上课,不用费心 TreeNode<T>
甚至懂得 self 比较。
- I am getting a warning that TreeNode defines '==' or '!=' but does not override 'Object.Equals(object o) and 'Object.GetHasCode', why would I use Object.Equals when I want to use the _comparer.Compare(x.Value, y.Value), _comparer is the passed in ITreeComparer instance creator of Tree must supply.
无论好坏,对象在 C# 中进行 self 比较的方式有多种。任何时候这些方法的实现方式不一致,您都会为一些真正令人头疼的错误做好准备。
因此,当您重载与相等相关的运算符时 ==
和 !=
, 但不是 Equals()
方法,您会收到警告。同样,在不修复 GetHashCode()
的情况下实现自定义平等关系正确反射(reflect)这些相等关系是获得非常难以修复的错误的好方法。
如果您开始在类型本身内实现相等操作,确保您在该类型中执行并执行一致的所有相等相关操作,这一点非常重要。
- If ITreeComparer were to implement IComparer would I just check if my _comparer is null and if is use the IComparer default Comparison, that way as user of Tree does not have to pass in an ITreeComparison implmentation?
正如我提到的,我认为您应该删除 ITreeComparer
共。没有真正的“沙盒”在进行……事实上,如果用户愿意,他们可以让一个类实现这两个接口(interface),在接口(interface)中使用完全相同的方法。当内置接口(interface)就足够了时,强制用户实现自定义接口(interface)只会让他们感到更加恼火。
只要我在写,我就会同意 the non-answer provided by ipavlu确实提供了一些有用的意见。特别是,您对空值的处理完全错误。另一篇文章指出了一些问题。另一个问题是如果x
和 y
都是空的,你的比较运算符都返回 true
. IE。根据代码,x
和 y
如果它们都为空,则同时大于和小于彼此。
幸运的是,确实没有明显的理由表明比较需要处理空值。原始实现(由用户提供)按照约定已经需要容纳空值。您自己的代码不需要检查它们。此外,空值根本没有出现在树中的明显原因。空节点引用没有多大意义:任何时候您在树中到达空节点,这就是您要存储节点的位置;没有必要决定新节点是在那个 null 的左边还是右边……它在那个时候 null 的位置右边!
关于c# - 为类型 T 的复杂对象创建自定义比较器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33359367/
我对这个错误很困惑: Cannot implicitly convert type 'System.Func [c:\Program Files (x86)\Reference Assemblies\
考虑这段代码: pub trait Hello { fn hello(&self); } impl Hello for Any { fn hello(&self) {
问题很简单。是否可以构造这样一个类型 T,对于它下面的两个变量声明会产生不同的结果? T t1 = {}; T t2{}; 我已经研究 cppreference 和标准一个多小时了,我了解以下内容:
Intellij idea 给我这个错误:“Compare (T, T) in Comparator cannot be applied to (T, T)” 对于以下代码: public class
任何人都可以告诉我 : n\t\t\t\t\n\t\t\t 在以下来自和 dwr 服务的响应中的含义和用途是什么. \r\n\t\t\t \r\n\t\t\t
让 T 成为一个 C++ 类。 下面三个指令在行为上有什么区别吗? T a; T a(); T a = T(); T 为不带参数的构造函数提供了显式定义这一事实是否对问题有任何改变? 后续问题:如果
Rust中的智能指针是什么 智能指针(smart pointers)是一类数据结构,是拥有数据所有权和额外功能的指针。是指针的进一步发展 指针(pointer)是一个包含内存地
比如我有一个 vector vector > v={{true,1},{true,2},{false,3},{false,4},{false,5},{true,6},{false,7},{true,8
我有一个来自 .xls 电子表格的数据框,我打印了 print(df.columns.values) 列,输出包含一个名为:Poll Responses\n\t\t\t\t\t。 我查看了 Excel
This question already has answers here: What are good reasons for choosing invariance in an API like
指针类型作为类型前缀与在类型前加斜杠作为后缀有什么区别。斜线到底是什么意思? 最佳答案 语法 T/~ 和 T/& 基本上已被弃用(我什至不确定编译器是否仍然接受它)。在向新向量方案过渡的初始阶段,[T
我正在尝试找到一种方法来获取模板参数的基类。 考虑以下类: template class Foo { public: Foo(){}; ~Foo(){};
这是一个让我感到困惑的小问题。我不知道如何描述它,所以只看下面的代码: struct B { B() {} B(B&) { std::cout ::value #include
为什么有 T::T(T&) 而 T::T(const T&) 更适合 copy ? (大概是用来实现move语义的???) 原始描述(被melpomene证明是错误的): 在C++11中,支持了一种新
在 Java 7 中使用 eclipse 4.2 并尝试实现 List 接口(interface)的以下方法时,我收到了警告。 public T[] toArray(T[] a) { ret
假设有三个函数: def foo[T](a:T, b:T): T = a def test1 = foo(1, "2") def test2 = foo(List(), ListBuffer()) 虽
我对柯里化(Currying)和非柯里化(Currying)泛型函数之间类型检查的差异有点困惑: scala> def x[T](a: T, b: T) = (a == b) x: [T](a: T,
考虑一个类A,我如何编写一个具有与相同行为的模板 A& pretty(A& x) { /* make x pretty */ return x; } A pretty(A&& x) {
Eclipse 表示由于泛型类型橡皮擦,类型参数不允许使用 instanceof 操作。 我同意在运行时不会保留任何类型信息。但是请考虑以下类的通用声明: class SomeClass{ T
在 C++14 中: 对于任何整数或枚举类型 T 以及对于任何表达式 expr: 有没有区别: struct S { T t { expr }; }; 和 struct S { T t = { exp
我是一名优秀的程序员,十分优秀!