首先想利用Binary search tree 來加速。 一開始使用Recursive 的版本反而花費很長的時間在append 上面。
改寫成 non-recursive 版本一樣花費很長時間。原因判斷因為每次append的時候都需要從root開始找尋insert的位置變成insert的時間複雜度為n x O(log(n))和原本的演算法0(1)相差很大。
elfay@elfay:~/github/phonebook$ ./phonebook_orig
size of entry : 136 bytes
execution time of append() : 0.000151 sec
execution time of findName() : 0.000006 sec
搜尋時間差不多但是append時間多花了10倍
elfay@elfay:~/github/phonebook$ ./phonebook_opt
size of entry : 144 bytes
execution time of append() : 0.001496 sec
execution time of findName() : 0.000006 sec