While Jsoup appears to be very good library to scrap HTML but unfortunately its API has virtually no documentation. Here is the API for Nodevisitor class:

http://jsoup.org/apidocs/org/jsoup/select/NodeVisitor.html

Can you explain what head and tail means (these terms usually associated with queues) and what datastructures and algorithms are being implied here and why I would implement head or tail?

link|improve this question

did u find out any answer to this? – Enigma Dec 7 '11 at 9:51
feedback

1 Answer

In a "general" context, head refers to the first element of a list, and tail to the remainder of the list. This is especially popular in functional programming where it is used to traverse lists recursively instead of iteratively.

However, in this specific context, I don't know ...however, I'm always suspicious about the quality of undocumented APIs.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.