Linklist Mergesort
Posted on 2014-01-24 03:27:36 +0900 in Data structure
Linkedlist mergesort in Linux kernal Merge sort on array can be easily done due to it is easy to find the specific data in a any given position index value. While, if it were the case in the linkedlist, it would be tough to implemente the mergesort efficienty. Thanks to...
Quoting and eval in Bash
Posted on 2014-01-20 19:15:24 +0900 in Linux
Quoting and eval in Bash Quoting Quoting in Bash actually skips some steps in the previous post: Sinle quotes('') bypass through the Step 10. Everything inside the Single quotes remains untouched. There can’t be single quotes inside single quotes, even if bashslashes are used. Double quotes("") bypass Step 1 through...
Bash Command Line Processing
Posted on 2014-01-17 03:46:17 +0900 in Computer
The command Line Processing of Bash