Next Spaceship

Driving into future...

My Emacs Configure File

| Comments

Open the file named “.emacs” in your home folder. (if it doesn’t exist, create one.) Copy the following code and paste it into the opening file. Save the file and restart Emacs.

POJ 1009 Edge Detection Report

| Comments

View the problem at POJ: 1009 Edge Detection.

The answer should be in format of Run Time Encoding. Let val[i] be the value, and len[i] be the length of the i-th pair. There is a corresponding location for each pair, ie the start point, and let row[i] be the row, and col[i] be the column of the start point for the i-th pair.

How to Test if a Host Is Active

| Comments

Sometimes, we would like to check if a remote host is reachable before we establish a connection. This is much like the function of the ping command in terminal. Well in Cocoa programing, you can use the function SCNetworkReachabilityCreateWithName().

Here is the code:

POJ 1190 Birthday Cake Report

| Comments

View this problem on POJ: 1190 Birthday Cake (生日蛋糕)

There is no good methods, maybe dynamic programing is feasible, but it’s too complex for me to construct the transformation equation.

I have to use DFS (Depth First Search) to solve this problem. After the TLE (Time Limit Exceeds) appeared enough times, I worked it out. Pruning is very important for this problem.

Config File for Compaq Evo N610c on Gentoo

| Comments

Wow, Compaq Evo N610c…It’s really an old machine… I searched the configure file for this machine, and fond only one page, but it’s too old to work for the latest Gentoo system. Here is my configure file, which costs me days of work.

STL Function: Binary_search()

| Comments

In some cases, we just want to if an element exists in a sorted list, then we can use the STL function: binary_search(). To use this function, you must include the header <algorithm>. Note before we use binary_search(), the list must be sorted, either in ascending order or in descending order. …… Here is a simpler example explaining how to use this function.

__int64 vs Long Long

| Comments

long long is a standard C++ type, so if you use gcc, you can use this type without any problem. But on Windows, as some old Microsoft C++ compilers don’t support the type long long, you have to use the non-standard type: __int64.

The following example shows how to input and output an __int64 type of variable.