[C language] Manhattan Distance Search extensionExtension with the fixed direction to searchStep:from top to leftfrom left to bottomfrom bottom to rightfrom right to topmain.c 1 #include <stdio.h ...
Posted by Shih-Shen Lu
[C language] Manhattan Distance SearchWhat is Manhattan Distance? It means |x2-x1|+|y2-y1|.Now I want to design a program that can return the related coordinates as you input ...
Posted by Shih-Shen Lu
[C language]Queue 與 Stack前言:讓使用者在一開始輸入要模擬Queue或是Stack,預設Queue與Stack大小不超過100個元素,當使用者選擇Queue則有Enqueue與Dequeue選擇Stack則有Push與Pop,之後使用者可以一直使用這四項功能,一直到使用者輸入字元’q’為止。同時每次使用任四項之一功能時都必須印出整個陣列的狀態。限制 ...
Posted by Shih-Shen Lu
[C language] Hacking application by LD_PRELOADObjectiveChange the function call before load the original function.Methodmain.c 1 #include <stdio.h> 2 3 int main() 4 { 5 printf("original printf %d\n", 1); 6 ...
Posted 15 Nov 2009 17:54 by Shih-Shen Lu
[Embedded System]Create ARM developped environment by QEMUOfficial website: QEMU, http://www.nongnu.org/qemu/QEMU is Installed by yum.[leeraphael@Shih-Shen ~]# yum install qemuOr you can install by source code from http://www.nongnu ...
Posted 11 Nov 2009 05:09 by Shih-Shen Lu