​ 将单链表改成环形单链表。使用环形单链表解决约瑟夫问题。

一、创建一个环形单链表

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
/**
* @author JSLEDD
* @description 定义一个学生链表来管理学僧
* @date 2016-6-2 14:07
* @return
* @throws
*/
class CircleSingleLinkedList {
//先初始化一个头节点, 头节点不要动, 不存放具体的数据
private StudentNode head = null;

//返回头节点
public StudentNode getHead() {
return head;
}

/**
* @param studentNode
* @return void
* @throws
* @description 直接将新增节点加到最后
* @author JSLEDD
* @date 2016/6/2 14:10
*/
public void add(StudentNode studentNode) {
if (head == null) {
head = studentNode;
head.next = head;
return;
}
//因为head节点不能动,因此我们需要一个辅助遍历 temp
StudentNode temp = head;
//遍历链表,找到最后
while (true) {
//找到链表的最后
if (temp.next == head) {//
break;
}
//如果没有找到最后, 将将temp后移
temp = temp.next;
}
//当退出while循环时,temp就指向了链表的最后
//将最后这个节点的next 指向 新的节点
temp.next = studentNode;
studentNode.next = head;
}

/**
* @param nums
* @return void
* @throws
* @description 批量添加
* @author JSLEDD
* @date 2016/6/2 14:10
*/
public void bacthadd(int nums) {
int startNo = 0;
int i = startNo;
if (head == null) {
head = new StudentNode(i, "景" + i++);
head.next = head;
}
//因为head节点不能动,因此我们需要一个辅助遍历 temp
StudentNode temp = head;
//遍历链表,找到最后
for (; i < startNo + nums; i++) {
temp.next = new StudentNode(i, "景" + i);
temp = temp.next;
}
//当退出while循环时,temp就指向了链表的最后
//将最后这个节点的next 指向 新的节点
temp.next = head;
}

/**
* @param studentNode
* @return void
* @throws
* @description 按学号新增节点
* @author JSLEDD
* @date 2016/6/2 14:11
*/
public void addByOrder(StudentNode studentNode) {
//因为头节点不能动,因此我们仍然通过一个辅助指针(变量)来帮助找到添加的位置
//因为单链表,因为我们找的temp 是位于 添加位置的前一个节点,否则插入不了
StudentNode temp = head;
boolean flag = false; // flag标志添加的编号是否存在,默认为false
while (true) {
if (temp.next == head) {//说明temp已经在链表的最后
break; //
}
if (temp.next.numno > studentNode.numno) { //位置找到,就在temp的后面插入
break;
} else if (temp.next.numno == studentNode.numno) {//说明希望添加的学号已然存在
flag = true; //说明编号存在
break;
}
temp = temp.next; //后移,遍历当前链表
}
//判断flag 的值
if (flag) { //不能添加,说明编号存在
System.out.printf("按学号插入列表错误,学号 %d 已经存在了, 不能加入\n", studentNode.numno);
} else {
//插入到链表中, temp的后面
studentNode.next = temp.next;
temp.next = studentNode;
}
}

public StudentNode getByNo(int numno) {
//判断是否空
if (head == null) {
System.out.println("链表为空~");
return null;
}
//找到需要修改的节点, 根据no编号
//定义一个辅助变量
StudentNode temp = head.next;
boolean flag = false; //表示是否找到该节点
while (true) {
if (temp == head) {
break; //已经遍历完链表
}
if (temp.numno == numno) {
return temp;
}
temp = temp.next;
}
return null;
}

/**
* @param studentNode
* @return void
* @throws
* @description 按学号更改学生
* @author JSLEDD
* @date 2016/6/2 14:15
*/
public void update(StudentNode studentNode) {
//判断是否空
if (head == null) {
System.out.println("链表为空~");
return;
}
//找到需要修改的节点, 根据no编号
//定义一个辅助变量
StudentNode temp = head.next;
boolean flag = false; //表示是否找到该节点
while (true) {
if (temp == head) {
break; //已经遍历完链表
}
if (temp.numno == studentNode.numno) {
//找到
flag = true;
break;
}
temp = temp.next;
}
//根据flag 判断是否找到要修改的节点
if (flag) {
temp.name = studentNode.name;
} else { //没有找到
System.out.printf("没有找到学号 %d 的节点,不能修改\n", studentNode.numno);
}
}

/**
* @param studentNode
* @return void
* @throws
* @description 删除学生
* @author JSLEDD
* @date 2016/6/2 14:18
*/
public void del(StudentNode studentNode) {
if (head == null) {
System.out.println("链表为空~");
return;
}
StudentNode temp = head;
boolean flag = false; // 标志是否找到待删除节点的
while (true) {
if (temp.next == head) { //已经到链表的最后
if (studentNode.numno == head.numno) { //找到最后之后 判断是不是头元素,只能在最后的时候判断
flag = true;
head = head.next;
break;
}
break;
}
if (temp.next.numno == studentNode.numno) {
//找到的待删除节点的前一个节点temp
flag = true;
break;
}
temp = temp.next; //temp后移,遍历
}
//判断flag
if (flag) { //找到
//可以删除
temp.next = temp.next.next;

} else {
System.out.printf("要删除的 %s 节点不存在\n", studentNode);
}
}

/**
* @return void
* @throws
* @description 打印学生信息
* @author JSLEDD
* @date 2016/6/2 14:20
*/
public void printList() {
System.out.println("---------------------------");
//判断链表是否为空
if (head == null) {
System.out.println("链表为空");
return;
}
//因为头节点,不能动,因此我们需要一个辅助变量来遍历
StudentNode temp = head;
while (true) {
//输出节点的信息
System.out.println(temp);
//判断是否到链表最后
if (temp.next.numno == head.numno) {
break;
}
//将temp后移, 一定小心
temp = temp.next;
}
}

/**
* @return void
* @throws
* @description 反序打印学生信息
* @author JSLEDD
* @date 2016/6/2 14:36
*/
public void reversePrintList() {
System.out.println("---------------------------");
if (head == null) {
return;//空链表,不能打印
}
//创建要给一个栈,将各个节点压入栈
Stack<StudentNode> stack = new Stack<StudentNode>();
StudentNode cur = head.next;
stack.push(head);
//将链表的所有节点压入栈
while (cur != head) {
stack.push(cur);
cur = cur.next; //cur后移,这样就可以压入下一个节点
}
//将栈中的节点进行打印,pop 出栈
while (stack.size() > 0) {
System.out.println(stack.pop()); //stack的特点是先进后出
}
}

/**
* @return int
* @throws
* @description 打印学生数量
* @author JSLEDD
* @date 2016/6/2 14:22
*/
public int size() {
if (head == null) { //空链表
return 0;
}
int length = 1;
//定义一个辅助的变量, 这里我们没有统计头节点
StudentNode cur = head.next;
while (cur != head) {
length++;
cur = cur.next; //遍历
}
return length;
}

/**
* @param index 索引
* @return void
* @throws
* @description 正序查找第几个学生
* @author JSLEDD
* @date 2016/6/2 14:25
*/
public StudentNode findLeftIndexNode(int index) {

if (head == null) { //空链表
return null;
}
int size = size();
if (index <= 0 || index > size) {//越界
return null;
}
//定义一个辅助的变量, 这里我们没有统计头节点
StudentNode cur = head;
for (int i = 0; i < index; i++) {
cur = cur.next;
}
return cur;
}

/**
* @param index 索引
* @return void
* @throws
* @description 反序查找第几个学生
* @author JSLEDD
* @date 2016/6/2 14:25
*/
public StudentNode findRightIndexNode(int index) {
return findLeftIndexNode(size() - index - 1);
}

/**
* @return void
* @throws
* @description 将列表反转
* @author JSLEDD
* @date 2016/6/2 14:39
*/
public void reversetList() {
//如果当前链表为空,或者只有一个节点,无需反转,直接返回
if (head == null || head.next == head) {
return;
}
//思路 先生成一个单链表再转换成环形单链表
StudentNode newHead = new StudentNode(-1, "");
StudentNode cur = head;//指针遍历的节点
StudentNode curnext = null;//指针遍历的节点的下一个节点
while (cur.next != null) {
curnext = cur.next;//当前节点的下一个节点
cur.next = newHead.next;//将新的头节点指向的下一节点赋予当前节点的下一节点
newHead.next = cur; //将新的头节点指向当前的节点
cur = curnext; //开始遍历下
}
head = newHead.next;
cur.next = head;
}
}

二、解决约瑟夫问题

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/**
* @param startNo 开始的地方
* @param countNum 步长
* @param nums 取出个数
* @throws
* @description
* @author JSLEDD
* @date 2016/6/215:55
*/
public void jonsepfu(int startNo, int countNum, int nums) {
if (head == null || startNo < 1 || startNo > nums) {
System.out.println("参数错误");
return;
}
StudentNode newhead = head;
StudentNode last = head;
//循环获取最后一个元素
while (true) {
if (last.next == head) {
break;
}
last = last.next;
}
for (int i = 0; i < startNo - 1; i++) {
newhead = newhead.next;
last = last.next;
}
while (true) {
if (newhead == last) {
System.out.println("最后去除" + newhead);
head = null;
break;
}
for (int i = 0; i < countNum - 1; i++) {
newhead = newhead.next;
last = last.next;
}
System.out.println("去除" + newhead);
newhead = newhead.next;
last.next = newhead;
}
}

三、测试

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/**
* @version 1.0
* @ClassName : Josepfu
* @Description : 约瑟夫问题的举例,单项环形链表
* @Author : JSLEDD
* @Date: 2016-6-2 10:02
*/
public class Josepfu {
public static void main(String[] args) {
//先创建节点
StudentNode node1 = new StudentNode(1, "张三");
StudentNode node2 = new StudentNode(2, "李四");
StudentNode node3 = new StudentNode(3, "王五");
StudentNode node4 = new StudentNode(4, "赵六");
//创建要给链表
CircleSingleLinkedList circlesingleLinkedList = new CircleSingleLinkedList();
circlesingleLinkedList.add(node1);
circlesingleLinkedList.add(node2);
circlesingleLinkedList.add(node3);
circlesingleLinkedList.add(node4);
System.out.println("head" + circlesingleLinkedList.getHead());
//打印学生列表
circlesingleLinkedList.printList();
circlesingleLinkedList.addByOrder(new StudentNode(6, "刘八"));
circlesingleLinkedList.addByOrder(new StudentNode(5, "刘七"));
circlesingleLinkedList.printList();
circlesingleLinkedList.del(new StudentNode(6, "刘八"));
circlesingleLinkedList.printList();
circlesingleLinkedList.del(new StudentNode(1, "张三"));
System.out.println("head" + circlesingleLinkedList.getHead());
circlesingleLinkedList.printList();
circlesingleLinkedList.update(new StudentNode(5, "刘九"));
circlesingleLinkedList.update(new StudentNode(1, "张二"));
circlesingleLinkedList.printList();
circlesingleLinkedList.reversePrintList();
System.out.println(circlesingleLinkedList.size());
System.out.println(circlesingleLinkedList.findLeftIndexNode(2));
System.out.println(circlesingleLinkedList.findRightIndexNode(2));
circlesingleLinkedList.printList();
circlesingleLinkedList.reversetList();
circlesingleLinkedList.printList();
System.out.println(circlesingleLinkedList.getByNo(2));
CircleSingleLinkedList josepfuList = new CircleSingleLinkedList();
josepfuList.bacthadd(40);
josepfuList.jonsepfu(1, 3, 40);
josepfuList.printList();
}
}

打印结果

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
head学生 [学号=1, 姓名=张三]
---------------------------
学生 [学号=1, 姓名=张三]
学生 [学号=2, 姓名=李四]
学生 [学号=3, 姓名=王五]
学生 [学号=4, 姓名=赵六]
---------------------------
学生 [学号=1, 姓名=张三]
学生 [学号=2, 姓名=李四]
学生 [学号=3, 姓名=王五]
学生 [学号=4, 姓名=赵六]
学生 [学号=5, 姓名=刘七]
学生 [学号=6, 姓名=刘八]
---------------------------
学生 [学号=1, 姓名=张三]
学生 [学号=2, 姓名=李四]
学生 [学号=3, 姓名=王五]
学生 [学号=4, 姓名=赵六]
学生 [学号=5, 姓名=刘七]
head学生 [学号=2, 姓名=李四]
---------------------------
学生 [学号=2, 姓名=李四]
学生 [学号=3, 姓名=王五]
学生 [学号=4, 姓名=赵六]
学生 [学号=5, 姓名=刘七]
没有找到学号 1 的节点,不能修改
---------------------------
学生 [学号=2, 姓名=李四]
学生 [学号=3, 姓名=王五]
学生 [学号=4, 姓名=赵六]
学生 [学号=5, 姓名=刘九]
---------------------------
学生 [学号=5, 姓名=刘九]
学生 [学号=4, 姓名=赵六]
学生 [学号=3, 姓名=王五]
学生 [学号=2, 姓名=李四]
4
学生 [学号=4, 姓名=赵六]
学生 [学号=3, 姓名=王五]
---------------------------
学生 [学号=2, 姓名=李四]
学生 [学号=3, 姓名=王五]
学生 [学号=4, 姓名=赵六]
学生 [学号=5, 姓名=刘九]
---------------------------
学生 [学号=5, 姓名=刘九]
学生 [学号=4, 姓名=赵六]
学生 [学号=3, 姓名=王五]
学生 [学号=2, 姓名=李四]
学生 [学号=2, 姓名=李四]
去除学生 [学号=2, 姓名=景2]
去除学生 [学号=5, 姓名=景5]
去除学生 [学号=8, 姓名=景8]
去除学生 [学号=11, 姓名=景11]
去除学生 [学号=14, 姓名=景14]
去除学生 [学号=17, 姓名=景17]
去除学生 [学号=20, 姓名=景20]
去除学生 [学号=23, 姓名=景23]
去除学生 [学号=26, 姓名=景26]
去除学生 [学号=29, 姓名=景29]
去除学生 [学号=32, 姓名=景32]
去除学生 [学号=35, 姓名=景35]
去除学生 [学号=38, 姓名=景38]
去除学生 [学号=1, 姓名=景1]
去除学生 [学号=6, 姓名=景6]
去除学生 [学号=10, 姓名=景10]
去除学生 [学号=15, 姓名=景15]
去除学生 [学号=19, 姓名=景19]
去除学生 [学号=24, 姓名=景24]
去除学生 [学号=28, 姓名=景28]
去除学生 [学号=33, 姓名=景33]
去除学生 [学号=37, 姓名=景37]
去除学生 [学号=3, 姓名=景3]
去除学生 [学号=9, 姓名=景9]
去除学生 [学号=16, 姓名=景16]
去除学生 [学号=22, 姓名=景22]
去除学生 [学号=30, 姓名=景30]
去除学生 [学号=36, 姓名=景36]
去除学生 [学号=4, 姓名=景4]
去除学生 [学号=13, 姓名=景13]
去除学生 [学号=25, 姓名=景25]
去除学生 [学号=34, 姓名=景34]
去除学生 [学号=7, 姓名=景7]
去除学生 [学号=21, 姓名=景21]
去除学生 [学号=39, 姓名=景39]
去除学生 [学号=18, 姓名=景18]
去除学生 [学号=0, 姓名=景0]
去除学生 [学号=31, 姓名=景31]
去除学生 [学号=12, 姓名=景12]
最后去除学生 [学号=27, 姓名=景27]
---------------------------
链表为空

Process finished with exit code 0

完整代码:Github