API - TIP

from Study/API 2007/12/05 23:05 view 24443
1. SendMessage (hList, LB_SETTOPINDEX, n, 0); - ListBox Control 에서 스크롤 맨아래로 내린다.

Tag |

자바 소스 보기 Class => java 로..

from Info/Tools 2007/12/05 19:37 view 29360
- 사용법 -
윈도우 상에서
1. 먼저 .jar 파일의 압축을 푼다.
2. cmd 창에서 압축이 풀린 디렉토리상으로 이동
3. 아래 명령어를 실행
    jad -r -d .\src -s java .\ifxjdbc\**\*.class
 
jad -r [-d<directory_for_source>] [<other_options>] <directory_width_classes>**\*.class
 
설명
-r : 해당 패키지 형태로 디렉토리 구조를 만듬(restore package directory structure)
-d : 디컴파일될 디렉토리(-d <dir> - directory for output files)
-s java : 디컴파일된 파일의 확장자를 java로 한다.
.\ifxjdbc\**\*.class : ifxjdbc 디렉토리 아래의 모든 클래스들 지정
 
***************************************
D:\work\framework\entity\...
D:\work\framework\resource\..
D:\work\framework\exception\...
이 디렉토리 아래에 class 파일이 존재할 경우 이 파일을 .java로 변환하기
 
D:\work>jad -r -d .\src -s java .\framework\**\*.class
**************************************
D:\work\framework\디렉토리 아래의 모든 .class 파일을 .java로 변환하여
D:\work\src\밑의 폴더로 만들어 준다.
**************************************
Tag |

Red/Black Tree

from Study/자료구조 2007/12/05 10:46 view 29150
Red/Black를 자바로 구현해 놓은곳 최최고~~( 자바 최신 버젼을 깔아야 한다. http://java.com )
http://www.ece.uc.edu/~franco/C321/html/RedBlack/redblack.html

http://webpages.ull.es/users/jriera/Docencia/AVL/AVL%20tree%20applet.htm

1. RedBlack.c( http://lxr.linux.no/linux-old+v2.4.20/lib/rbtree.c )

more..