Monthly Archives: October 2009

Friday Night

이 곳의 특이사항이라면 금요일에는 모든 도서관이 5시에 닫는다는 것이다. 금요일 밤에는 놀라는 것? 여기만 그런건지, 미국에서 공통적인 것인지 궁금하다.ㅎㅎ 도서관이 아쉬운 지금; http://www.lib.purdue.edu/libraries/hours/2009/FallandSpringHours.html#allhours

Posted in Uncategorized | 2 Comments

Java synchronized keyword & ReentrantLock

So basically, qlock.lock(); try {   retval = queue.next(); } finally {   qlock.unlock(); } and synchronized (this) {   retval = queue.next(); } are the same thing. ReentrantLock provides some more complex methods, but for simple synchronization the synchronized keyword should … Continue reading

Posted in Electrical Engineering | Leave a comment

연구 분야

오래 미뤄오던 나의 연구 분야에 대한 포스팅. 오늘 Prof. Kulkarni로부터 다음 학기 RA에 대한 확답을 받았다. 몇 주 전 대화에서 꽤 강한 암시가 있었었는데, 그 후로 별다른 얘기가 없어서 오늘 미팅 끝나고 직접적으로 물어봤다. 교수님은 그 전의 대화를 확정적으로 생각했던 … Continue reading

Posted in Uncategorized | 6 Comments

Fedex를 찾아서

지난 주에 힐리오 요금 청구서를 받아보고, 요금 변경에 대해 알아보다가, 한국어 고객 센터에 대한 안내를 보게 되었다. 전화해서 폰이 고장난 것에 대해 설명하니, 새 것으로 교체해 준단다! 힐리오에서 새 폰을 Fedex로 부쳐주고, 내가 새 폰을 받아서 개통시키고, 고장난 폰을 돌려보내면 … Continue reading

Posted in Uncategorized | Leave a comment

RedBlackTrees

RedBlackTrees are a special type of binary search tree which ensures that the height is at most 2lg(n+1) where n is the number of nodes.  This worst case height limit is enforced by coloring.  Nodes are colored either black or … Continue reading

Posted in Electrical Engineering | Leave a comment