摘要: package com.kuang;import java.util.Arrays;/** * @auther 付强 * @date 2020/2/15 - 9:12 */public class shellSort { public static void main(String[] args) 阅读全文
posted @ 2020-02-15 09:25 1350464730 阅读(98) 评论(0) 推荐(0) 编辑
摘要: package com.node;/** * @auther 付强 * @date 2020/2/14 - 13:46 */public class TestDoubleNode { public static void main(String[] args) { //创建节点 DoubleNode 阅读全文
posted @ 2020-02-14 19:35 1350464730 阅读(139) 评论(0) 推荐(0) 编辑
摘要: package com.node;/** * @auther 付强 * @date 2020/2/14 - 13:32 */public class DoubleNode { //上一个节点(等于this)保证循环 DoubleNode pre=this; //下一个节点 DoubleNode ne 阅读全文
posted @ 2020-02-14 19:34 1350464730 阅读(166) 评论(0) 推荐(0) 编辑
摘要: package com.node;/** * @auther 付强 * @date 2020/2/14 - 13:25 *///循环链表测试public class TestLoopNode { public static void main(String[] args) { LoopNode n1 阅读全文
posted @ 2020-02-14 19:32 1350464730 阅读(195) 评论(0) 推荐(0) 编辑
摘要: package com.node;/** * @auther 付强 * @date 2020/2/14 - 9:20 *///一个节点 //循环链表public class LoopNode { //节点内容 int data; //下一个节点(循环链表只需要加一个this即可) LoopNode 阅读全文
posted @ 2020-02-14 19:30 1350464730 阅读(176) 评论(0) 推荐(0) 编辑
摘要: package com.node;/** * @auther 付强 * @date 2020/2/14 - 9:25 *///普通链表测试public class TestNode { public static void main(String[] args) { //创建节点 Node n1=n 阅读全文
posted @ 2020-02-14 19:28 1350464730 阅读(248) 评论(0) 推荐(0) 编辑
摘要: package com.node;/** * @auther 付强 * @date 2020/2/14 - 9:20 *///一个节点 //普通链表public class Node { //节点内容 int data; //下一个节点 Node next; public Node(int data 阅读全文
posted @ 2020-02-14 19:26 1350464730 阅读(95) 评论(0) 推荐(0) 编辑
摘要: package com.kuang;import java.util.Arrays;/** * @auther 付强 * @date 2020/2/14 - 19:02 */public class insertSort { public static void main(String[] args 阅读全文
posted @ 2020-02-14 19:23 1350464730 阅读(147) 评论(0) 推荐(0) 编辑
摘要: package com.kuang;import java.lang.reflect.Array;import java.util.Arrays;/** * @auther 付强 * @date 2020/2/14 - 18:39 */public class quickSort { public 阅读全文
posted @ 2020-02-14 18:57 1350464730 阅读(94) 评论(0) 推荐(0) 编辑
摘要: package com.digui;/** * @auther 付强 * @date 2020/2/14 - 14:00 *///递归public class TestRecursive { public static void main(String[] args) { print(5); } p 阅读全文
posted @ 2020-02-14 18:27 1350464730 阅读(169) 评论(0) 推荐(0) 编辑