This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package us.kardol.datastructure; | |
import java.util.Arrays; | |
/** | |
* Created by Guillermo Kardolus on 2/13/16. | |
* | |
* Wikipedia: | |
* the heap property: If A is a parent node of B then the key of node A is ordered with respect to the key of | |
* node B with the same ordering applying across the heap. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--[[ | |
URLs MUST conform to RFC 1738, that is, an URL is a string in the form: | |
[ftp://][<user>[:<password>]@]<host>[:<port>][/<path>][type=a|i] | |
--]] | |
local ftp = require("socket.ftp") | |
local ltn12 = require("ltn12") | |
local url = require("socket.url") | |
local socket = require("socket") | |
local pretty = require("pl.pretty") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var ORIGINAL = 'E:\\FILES\\30425\\ORIGINAL'; // input folder | |
var PRE_PROCESSED = 'E:\\FILES\\30425\\PRE_PROCESSED'; // output folder | |
var benchmarkFile = 'E:\\LOG\\benchmark.csv'; // time messurements | |
/** | |
* The functions you combine in this method will be benchmark tested | |
* @param fileName - Target file | |
*/ | |
function psAction(fileName){ | |
psOpenFile(fileName); |
NewerOlder