摘要: package com.digui;/** * @auther 付强 * @date 2020/2/14 - 14:22 *///斐波那契实现public class TestFebonacci { public static void main(String[] args) { int i=feb 阅读全文
posted @ 2020-02-14 18:25 1350464730 阅读(180) 评论(0) 推荐(0) 编辑
摘要: package com.digui;/** * @auther 付强 * @date 2020/2/14 - 15:37 */public class TestHanoi { public static void main(String[] args) { hanoi(3,'A','B','C'); 阅读全文
posted @ 2020-02-14 18:09 1350464730 阅读(199) 评论(0) 推荐(0) 编辑
摘要: package com.queue;/** * @auther 付强 * @date 2020/2/13 - 13:30 */public class TestMyqueue { public static void main(String[] args) { //创建一个队列 Myqueue my 阅读全文
posted @ 2020-02-13 17:12 1350464730 阅读(167) 评论(0) 推荐(0) 编辑
摘要: package com.queue;/** * @auther 付强 * @date 2020/2/13 - 13:30 */public class Myqueue { int []elements; public Myqueue(){ elements=new int[0]; } //入队 pu 阅读全文
posted @ 2020-02-13 17:10 1350464730 阅读(270) 评论(0) 推荐(0) 编辑
摘要: package com.stack;/** * @auther 付强 * @date 2020/2/13 - 13:08 */public class TestMystack { public static void main(String[] args) { //先创建一个栈 Mystack my 阅读全文
posted @ 2020-02-13 13:26 1350464730 阅读(241) 评论(0) 推荐(0) 编辑
摘要: package com.stack;/** * @auther 付强 * @date 2020/2/13 - 12:45 */public class Mystack { //栈的底层我们使用数组来存储数据 int[] elements; public Mystack(){ elements=new 阅读全文
posted @ 2020-02-13 13:24 1350464730 阅读(544) 评论(0) 推荐(0) 编辑
摘要: package com.fu;import java.util.Arrays;/** * @auther 付强 * @date 2020/2/13 - 10:27 */public class myArray1 { //用于存储数据的数组 private int[] elements; public 阅读全文
posted @ 2020-02-13 12:16 1350464730 阅读(144) 评论(0) 推荐(0) 编辑
摘要: 1.为什么 wait,notify 和 notifyAll 是在 Object 类中定义的而不是在 Thread 类中定义: 1) wait 和 notify 不仅仅是普通方法或同步工具,更重要的是它们是 Java 中两个线程之间的通信机制。 2) 每个对象都可上锁,这是在 Object 类而不是 阅读全文
posted @ 2020-02-12 14:55 1350464730 阅读(112) 评论(0) 推荐(0) 编辑
摘要: package com.fu;/** * @auther 付强 * @date 2020/2/12 - 12:58 *///二分查找public class testsearch1 { public static void main(String[] args) { int arr[]={1,3,5 阅读全文
posted @ 2020-02-12 13:20 1350464730 阅读(157) 评论(0) 推荐(0) 编辑
摘要: package com.fu;import com.sun.org.apache.xpath.internal.SourceTree;import java.util.Scanner;/** * @auther 付强 * @date 2020/2/12 - 11:27 */public class 阅读全文
posted @ 2020-02-12 11:33 1350464730 阅读(150) 评论(0) 推荐(0) 编辑