Sublime Text 3 IDE setup

Highlight: Sublime Text 3 already build in support 48 types of language syntax highlight, auto-complete etc Sublime Text 3 only provides few build package for compiling/running Here providing user defined build packages for most popularly languages and scripts: C/C++/Java/Go/Objc/Ruby/Lua/HTML/JavaScript/JQuery/bash it is portable ST3 IDE on windows Language build is pre-zipped …

C: shellsort function

The following function is a Shell sort for sorting an array of integers. The basic idea of this sorting algorithm, which was invented in 1959 by D. L. Shell. The shellsort function is from K&R C, added test driver to verify. test result: $ shellsort The original number array: 4 …