摘要: 1 #include 2 #include 3 #include 4 struct SortObject{ 5 int n; 6 int * record; 7 }; 8 typedef struct SortObject * Array; 9 10 void insertSort(Array a){ 11 int i,j; ... 阅读全文
posted @ 2018-06-04 16:55 f-- 阅读(293) 评论(0) 推荐(0) 编辑
摘要: http://blog.sina.com.cn/s/blog_6e09903f0101g2ld.html 阅读全文
posted @ 2018-06-02 20:06 f-- 阅读(221) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/pureEve/p/6524366.html 创建新线程 https://www.cnblogs.com/xwlych/p/5988507.html 线程同步与互斥 https://blog.csdn.net/dazhong159/article/de 阅读全文
posted @ 2018-06-02 19:43 f-- 阅读(118) 评论(0) 推荐(0) 编辑
摘要: http://www.sohu.com/a/218267745_479559 https://www.cnblogs.com/z-blog/p/8860799.html https://github.com/lz4/lz4-java 阅读全文
posted @ 2018-06-02 19:34 f-- 阅读(515) 评论(0) 推荐(0) 编辑
摘要: @CSDN-Lirx_Tech GridBagLayout——网格袋布局: 1) 是GridLayout的升级,更加灵活,允许网格大小互不相同(一个格子可以纵向或横向跨越多个格子的长度),当窗口伸缩时里面的组件也会跟着一起精确地伸缩; 2) 构造器只有一种,即默认的无参构造器:GridBagLayo 阅读全文
posted @ 2018-05-29 19:56 f-- 阅读(236) 评论(0) 推荐(0) 编辑
摘要: 1 public class Main{ 2 public static void main(String args[]) { 3 System.out.println("n e\r\n" + 4 "- -----------"); 5 for(int i=0;i<10;i++) { 6 ... 阅读全文
posted @ 2018-05-24 17:23 f-- 阅读(174) 评论(0) 推荐(0) 编辑
摘要: 1 import java.util.Scanner; 2 3 public class Main{ 4 public static void main(String args[]) { 5 Scanner sc=new Scanner(System.in); 6 while(true){ 7 int n=sc.ne... 阅读全文
posted @ 2018-05-24 16:47 f-- 阅读(102) 评论(0) 推荐(0) 编辑
摘要: 1 import java.io.*; 2 import java.util.*; 3 public class Main{ 4 public static void main(String[] args) { 5 Scanner input = new Scanner(System.in); 6 int a, b; int n; 7... 阅读全文
posted @ 2018-05-24 16:25 f-- 阅读(114) 评论(0) 推荐(0) 编辑
摘要: 1 import java.util.HashMap; 2 import java.util.Map; 3 import java.util.Scanner; 4 5 import javax.swing.text.html.HTMLDocument.Iterator; 6 7 public cla 阅读全文
posted @ 2018-05-24 16:20 f-- 阅读(149) 评论(0) 推荐(0) 编辑
摘要: 1 import java.util.Scanner; 2 3 public class Main{ 4 static int hl[][]=new int[20][20]; 5 static int sum=0; 6 static int blx,bly; 7 public static void unreach(int hx,int hy){ ... 阅读全文
posted @ 2018-05-23 09:31 f-- 阅读(207) 评论(0) 推荐(0) 编辑