Engineering71 Syntax Highlighter~! So Cool~! 사용법은 : http://gyuha.tistory.com/193 에서 참고함 package android.SocketTest; import android.app.Activity; import android.os.Bundle; public class SocketTest extends Activity { @Override public void onCreate(Bundle icicle) { super.onCreate(icicle); setContentView(R.layout.main); Thread cThread = new Thread(new TCPClient()); cThread.start(); } } 2008. 1. 19. [펌]C에서 쓰이는 문자열 관련 함수 Written by LHC ( s1662543@kiscos.sarang.net) - 스트링 관련 함수 v1.2- 1. 종류 int strcasecmp(const char *s1, const char *s2); char *strcat(char *dest, const char *src); char *strchr(const char *s, int c); int strcmp(const char *s1, const char *s2); int strcoll(const char *s1, const char *s2); char *strcpy(char *dest, const char *src); size_t strcspn(const char *s, const char *reject); char *strdup(const .. 2008. 1. 14. Link State & Distance Vector Simulation 할 수 있는 사이트. http://www.mathiaz.com/routage/ Link State (Dijkstra) Algorithm과 Distance Vector(Bellman Ford) Algorithm의 차이점을 알아둘 것. 2007. 11. 12. Bubble Sort(거품 정렬) #include using namespace std; template void BubbleSort(T arr[], int n); int main() { int arr[] = {5, 4, -1, 0, 2, 11, 1}; BubbleSort(arr, 7); for (int i = 0; i < 7; i++) cout 2007. 11. 9. 이전 1 ··· 12 13 14 15 16 17 18 다음