您的位置:首页 > 数据库 > Redis

php使用redis在windows下配置方法

2012-10-12 16:46 701 查看
There is a node Class ,as the following , how to implement a getMaxValue method with recursion ?

(抱歉,英语不是太好,只能这么写了,用递归实现一个getMaxValue 方法。

 

class Node {
 
 public int value;
 public Node next;

}

 

public class Recursion {

 public Node getMaxValue(Node aNode) {
  
 }
}

 

 
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: