Java Reading Notes
Saturday, March 26, 2011
recursion to iterative
f(){
if( condition = false)
return;
f();
g()
}
change to iterative
f(){
while(condition = true){
g();
}
}
No comments:
Post a Comment
Newer Post
Older Post
Home
View mobile version
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment