Go to the home page of AlgoPositive
  • Contact

AlgoPositive

Code Addicted

Dedicated to NLP, AI and OO coders

Posted on 2 October 201728 October 2020

Created for informative purposes, as per the subject line. You are free to use the content of algopositive.com in any references or software development as long as you provide a link to the source within your work.

Continue reading "Dedicated to NLP, AI and OO coders"

Recursive, Tree Traversal methods in Java

Posted on 31 October 201728 October 2020

There are three traversal methods in Java: Pre order- The root node is visited first. In Order-The root node is visited after one of the sides(left or right) of a sub tree has been visited. Post Order-The root node is visited last. For the example below we shall assume there exists a tree node with […]

Continue reading "Recursive, Tree Traversal methods in Java"

Parsing text from a website in Java

Posted on 3 October 201728 October 2020

A simple java class can be written in order to parse some text from a random website. As a starting point we may use a simple code below that would allow us to store the parsed results as a text file. There are two methods only within the

Continue reading "Parsing text from a website in Java"
AlgoPositive 2020