码迷,mamicode.com
首页 > 其他好文 > 详细

在单向链表中删除指定的key

时间:2020-04-28 00:11:48      阅读:51      评论:0      收藏:0      [点我收藏+]

标签:ret   node   this   while   ext   错误   spec   删除   pre   

/**
* 在单向链表中删除指定的key
*/
public class RemoveSpecKeyFromNode {

public static class Node<T> {

public T value;

public Node next;

public Node(T node) {
this.value = node;
}

}

public static <T> Node removeSpecKeyFromNode(Node node, T key) {
if (node == null || key == null) {
return node;
}
while (node.value == key) {
node = node.next;
}
Node pre = node;
Node cur = null;
while ((cur = node.next) != null) {
if (cur.value == key) {
pre.next = cur.next;
} else {
pre = cur;
}
}
return node;
}

}

/* 如有错误,欢迎批评指正 */

在单向链表中删除指定的key

标签:ret   node   this   while   ext   错误   spec   删除   pre   

原文地址:https://www.cnblogs.com/laydown/p/12791241.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!