示例#1
0
        public Tuple <int, int> GetIndexes(int[] numbers, int sum)
        {
            Tuple <int, int> answer = null;

            // Create new BST
            BinaryTree <IndexValueRemainder> bst = new BinaryTree <IndexValueRemainder>();

            for (int i = 0; i < numbers.Length; i++)
            {
                IndexValueRemainder ivr = new IndexValueRemainder(i, numbers[i], sum - numbers[i]);
                bst.Add(ivr);
            }

            while (bst.Count > 1)
            {
                if (CheckRootAndAnyNumber(bst, out a, out b))
                {
                    answer = new Tuple <int, int>(a.index, b.index);
                    return(answer);
                }

                // if root number is not part of the solution, remove it from the tree and restart
                bst.Remove(bst.Root.Value);
            }

            return(answer);
        }
        public int CompareTo(object obj)
        {
            IndexValueRemainder ivr = obj as IndexValueRemainder;

            if (ivr == null)
            {
                throw new ArgumentException($"Cannot compare with object which is not of type {this.GetType()}");
            }
            return(value.CompareTo(ivr.value));
        }
示例#3
0
        private bool CheckRootAndAnyNumber(BinaryTree <IndexValueRemainder> bst, out IndexValueRemainder a, out IndexValueRemainder b)
        {
            bool found;

            a = null;
            b = null;

            IndexValueRemainder nodeToCheck;

            // find a node in the bst, whose value equals to root.remainder value, as per conditions of the quiz
            IndexValueRemainder remainder = new IndexValueRemainder(0, bst.Root.Value.remainder, 0);

            found = bst.Contains(remainder, out nodeToCheck);

            // need to check so that indexes do not match - condition of the quiz
            if (found && bst.Root.Value.index != nodeToCheck.index)
            {
                a = bst.Root.Value;
                b = nodeToCheck;
            }

            return(found);
        }