Sort by

recency

|

9 Discussions

|

  • + 0 comments

    Grammatical error. " - Deletes the current node with the subtree rooted in it and sets the current node as a parent of just deleted node."

    It should be " - Deletes the current node with the subtree rooted in it and sets the current node TO THE parent of just deleted node;" or " - Deletes the current node with the subtree rooted in it and sets the a parent of just deleted node as the current node."

  • + 0 comments

    Is this type of algorithm helps us to PPC Management Agency Hampshire for our firm? I want to automate my work through robots.

  • + 0 comments

    Data is graphically represented in PeopleSoft Tree Manager to indicate a hierarchy for solve my online classes the trees you've established for hierarchical information can be used by other areas of the system, such as reports, ChartField combination editing, OLAP, summary ledgers, or security.

  • + 0 comments

    task can be solved without zipper and everything is immutable just put the tree and navigation into two different structures

    final case class Node(value: Int, children: Vector[Node] = Vector.empty)
    final case class PathNode(link: Node, pos: Int, parent: Option[Node])
    
  • + 0 comments

    Learning something new is why I like this place. I did not know about zipper trees.

    But this was a very difficult task in the wrong I my mind. Solving the problem was the easy part. Geting it to pass within the allowed time frame was an entire different story.

    If you try to solve this task with erlang and you have issues with timeout, try search for

    "Erlang: Read from an input stream in a efficient way"

    Using module string will not work, use binaries. I also had to write my own split line method for the operations.

    Good luck.