24.04.2016 04:04

Please Visit: http://ift.tt/1ajReyV



from Public RSS-Feed of Jeffery yuan. Created with the PIXELMECHANICS 'GPlusRSS-Webtool' at http://gplusrss.com http://ift.tt/219mtsK
via LifeLong Community

Signs that you're a good programmer http://ift.tt/YcADJa ...

Please Visit: http://ift.tt/1ajReyV

Signs that you're a good programmer
http://ift.tt/YcADJa
http://ift.tt/ogKmcv
http://ift.tt/19R6FmI


from Public RSS-Feed of Jeffery yuan. Created with the PIXELMECHANICS 'GPlusRSS-Webtool' at http://gplusrss.com http://ift.tt/244RIqP
via LifeLong Community

Java Order Statistic TreeMap http://ift.tt/1T0RQ2M...

Please Visit: http://ift.tt/1ajReyV

Java Order Statistic TreeMap
http://ift.tt/1T0RRUp

final Entry<K,V> getIthEntry(Entry<K,V> entry, int i) {
if (i > size || i<=0)
throw new IndexOutOfBoundsException("Size is " + size
+ ", requested i=" + i + " out of bounds");
int r = 1;
if (entry.left != null)
r += entry.left.size;
if (i == r)
return entry;
else if (i < r)
return getIthEntry(entry.left, i);
else
return getIthEntry(entry.right, i-r);

}

static final class Entry<K,V> implements Map.Entry<K,V> {
K key;
V value;
Entry<K,V> left = null;
Entry<K,V> right = null;
Entry<K,V> parent;
boolean color = BLACK;
int size = 1;
}


ds



from Public RSS-Feed of Jeffery yuan. Created with the PIXELMECHANICS 'GPlusRSS-Webtool' at http://gplusrss.com http://ift.tt/1T0RQ2O
via LifeLong Community

Seven Habits of a Great Programmer http://ift.tt/1jaFYAh...

Please Visit: http://ift.tt/1ajReyV

Seven Habits of a Great Programmer
http://ift.tt/TMRGUT
http://ift.tt/1VkavNa


from Public RSS-Feed of Jeffery yuan. Created with the PIXELMECHANICS 'GPlusRSS-Webtool' at http://gplusrss.com http://ift.tt/1Vkaton
via LifeLong Community

Reshared post from Pete Williamson:

Please Visit: http://ift.tt/1ajReyV

Emacs is available on Chromebook and Chromehttp://endlessparentheses.com/emacs-is-available-on-chromebook-and-chrome.html

Original Post from Pete Williamson:

Emacs beta is now available on chromebooks (and in chrome)!
(instructions in the comments below)



from Public RSS-Feed of Jeffery yuan. Created with the PIXELMECHANICS 'GPlusRSS-Webtool' at http://gplusrss.com http://ift.tt/20Wdr2b
via LifeLong Community

Programmer Problem-Solving Skills Solving Problem from Different Angles http://ift.tt/20Wdrzf...

Please Visit: http://ift.tt/1ajReyV

Programmer Problem-Solving Skills

Solving Problem from Different Angles
http://ift.tt/1SkF5C8
Searching more effectively
http://ift.tt/1qYpUpI
Read the error message
http://ift.tt/1ScDoEg


from Public RSS-Feed of Jeffery yuan. Created with the PIXELMECHANICS 'GPlusRSS-Webtool' at http://gplusrss.com http://ift.tt/1qYpS0U
via LifeLong Community

Soft Skills to Software Engineers http://ift.tt/1SonUQB...

Please Visit: http://ift.tt/1ajReyV

Soft Skills to Software Engineers
http://ift.tt/1U4Fp9U
http://ift.tt/1WBVZjj


from Public RSS-Feed of Jeffery yuan. Created with the PIXELMECHANICS 'GPlusRSS-Webtool' at http://gplusrss.com http://ift.tt/1WBVZzz
via LifeLong Community