摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi 阅读全文
posted @ 2021-10-14 14:23 源霸霸丿 阅读(815) 评论(0) 推荐(0) 编辑
摘要: package lll; import java.awt.*; import javax.swing.*; public class ccc extends JFrame{ private Thread threadA; private Thread threadB; final JProgressBar pb1 =new JProgressBar(); fina... 阅读全文
posted @ 2019-10-16 15:18 源霸霸丿 阅读(159) 评论(0) 推荐(0) 编辑
摘要: package syj; import java.io.*; public class syj4 { public static void main(String[] args) { // TODO 自动生成的方法存根 File file = new File("data.txt"); String syj = "12345abcdef... 阅读全文
posted @ 2019-06-20 10:22 源霸霸丿 阅读(158) 评论(0) 推荐(0) 编辑
摘要: #include #include #define maxsize 127 typedef char TElemType; typedef struct node{ TElemType data[maxsize]; TElemType n; }SqBTree; void createBTree(SqBTree&T,TElemType pre[],int n,int &m){ ... 阅读全文
posted @ 2019-06-04 11:59 源霸霸丿 阅读(169) 评论(0) 推荐(0) 编辑
摘要: package bbb; import java.awt.*; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import javax.swing.*; public class myframe implements ActionListener{ JFrame f; JPane... 阅读全文
posted @ 2019-05-31 11:57 源霸霸丿 阅读(163) 评论(0) 推荐(0) 编辑
摘要: #include #include typedef char M; typedef struct node{ M data; struct node *lchild,*rchild; }BiTNode,*BinTree; void createBinTree_Pre(BiTNode *&T,M pre[],int&n){ M ch=pre[n++]; if(ch==';')... 阅读全文
posted @ 2019-05-28 11:55 源霸霸丿 阅读(304) 评论(0) 推荐(0) 编辑
摘要: package bbb; import javax.swing.*; import java.awt.*; public class GridLayoutPosion extends JFrame{ public GridLayoutPosion(){ Container c=getContentPane(); c.setLayout(new GridLa... 阅读全文
posted @ 2019-05-24 11:36 源霸霸丿 阅读(167) 评论(0) 推荐(0) 编辑
摘要: package bbb; import javax.swing.*; import java.awt.*; public class myframe{ JFrame f; JPanel p; JButton b1,b2; JLabel l1,l2,l3,l4,l5,l6,l7,l8,l9; JTextField t1... 阅读全文
posted @ 2019-05-24 11:35 源霸霸丿 阅读(271) 评论(0) 推荐(0) 编辑
摘要: 1 package bbb; 2 import java.awt.BorderLayout; 3 import java.awt.GridBagLayout; 4 import java.awt.GridLayout; 5 import javax.swing.*; 6 public class myframe { 7 int size =10; 8 JFrame f; ... 阅读全文
posted @ 2019-05-24 11:30 源霸霸丿 阅读(244) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2019-05-10 11:54 源霸霸丿 阅读(87) 评论(0) 推荐(0) 编辑