Skip to content

ksgerastenok/java

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

java

This repository contains different java samples.

  • Base64 encoder / decoder
  • Multithread compressor / decompressor (gzip)
  • Integer divider / remainder calculator based on substract / shift operation with O(log n) complexity
  • Optional with "lazy" intermediate operations (aka map, flatMap, etc) which is executed when terminal operation (aka orElse, ifPresent, etc) is executed
  • Stream with "lazy" intermediate operations (aka map, flatMap, etc) which is executed when terminal operation (aka forEach, reduce, etc) is executed