Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 353 Bytes

File metadata and controls

30 lines (20 loc) · 353 Bytes
title Algorithm4 Java Solution 1.3.23
date 2019-07-04 05:47:10 +0800
draft false
tags
JAVA
categories
TECH
archives

1.3.23

Problem:

Why does the following code fragment not do the same thing as in the previous question?

x.next = t;
t.next = x.next;

Solution:

node t.next=t .

Reference: