摘要:
package com.kuang;import java.util.Arrays;/** * @auther 付强 * @date 2020/2/15 - 9:12 */public class shellSort { public static void main(String[] args) 阅读全文
摘要:
package com.node;/** * @auther 付强 * @date 2020/2/14 - 13:46 */public class TestDoubleNode { public static void main(String[] args) { //创建节点 DoubleNode 阅读全文
摘要:
package com.node;/** * @auther 付强 * @date 2020/2/14 - 13:32 */public class DoubleNode { //上一个节点(等于this)保证循环 DoubleNode pre=this; //下一个节点 DoubleNode ne 阅读全文
摘要:
package com.node;/** * @auther 付强 * @date 2020/2/14 - 13:25 *///循环链表测试public class TestLoopNode { public static void main(String[] args) { LoopNode n1 阅读全文
摘要:
package com.node;/** * @auther 付强 * @date 2020/2/14 - 9:20 *///一个节点 //循环链表public class LoopNode { //节点内容 int data; //下一个节点(循环链表只需要加一个this即可) LoopNode 阅读全文
摘要:
package com.node;/** * @auther 付强 * @date 2020/2/14 - 9:25 *///普通链表测试public class TestNode { public static void main(String[] args) { //创建节点 Node n1=n 阅读全文
摘要:
package com.node;/** * @auther 付强 * @date 2020/2/14 - 9:20 *///一个节点 //普通链表public class Node { //节点内容 int data; //下一个节点 Node next; public Node(int data 阅读全文
摘要:
package com.kuang;import java.util.Arrays;/** * @auther 付强 * @date 2020/2/14 - 19:02 */public class insertSort { public static void main(String[] args 阅读全文
摘要:
package com.kuang;import java.lang.reflect.Array;import java.util.Arrays;/** * @auther 付强 * @date 2020/2/14 - 18:39 */public class quickSort { public 阅读全文
摘要:
package com.digui;/** * @auther 付强 * @date 2020/2/14 - 14:00 *///递归public class TestRecursive { public static void main(String[] args) { print(5); } p 阅读全文