beckyUp
beckyUp
全部文章
分类
--------------作业---------------(4)
ACM算法(15)
c++(16)
codeforces(8)
CSP(2)
fft(1)
java(8)
java图像(1)
KMP(4)
tcp/ip(4)
二分(5)
二分图匹配(1)
分块(1)
分治(2)
前缀和(2)
动态规划(18)
区间dp(3)
博弈(2)
后缀数组(1)
图论(8)
字典树(1)
字符串(8)
小技巧(9)
并查集(2)
感悟(13)
操作系统(2)
数据库(3)
数据结构(22)
数论(10)
未归档(7)
构造(2)
树形dp(1)
水题(22)
状压dp(2)
脑洞(1)
自然语言处理(2)
计算几何(5)
计算方法(4)
读书笔记(2)
归档
标签
去牛客网
登录
/
注册
距离今天结束还有1分钟
ACM 蒟蒻
全部文章
(共224篇)
写一个学生信息输入表格java GUI
package gui; import java.awt.*; import java.awt.event.*; import javax.swing.*; public class LabelFrame extends JFrame { private final JLabel label...
2018-04-11
0
534
JAVA GUI 做一个学生信息窗口
package gui; import java.awt.FlowLayout; import javax.swing.JFrame; import javax.swing.JLabel; import javax.swing.SwingConstants; import javax.swing.I...
2018-04-11
0
425
4.11 c++上机【继承与派生3】
写一个baseclass 和它派生出的drivedclass ,通过指针调用二者相同的函数 #include<bits/stdc++.h> using namespace std; class BaseClass { public: void fn1() { ...
2018-04-11
0
437
4.11 c++上机【继承与派生2】
定义一个document类 派生出book类 #include <bits/stdc++.h> using namespace std; class ducumemt { private: string name,text; public: void setname(s...
2018-04-11
1
455
4.11 c++ 【继承与派生】
定义一个基类shape,在shape 的基础上派生出 rectangle 和circle …… #include <bits/stdc++.h> using namespace std; const double pi=3.14159; class Shape{ public: ...
2018-04-10
0
379
数据结构之哈夫曼树
// stringtraining.cpp: 定义控制台应用程序的入口点。 // #include "stdafx.h" #include <bits/stdc++.h> using namespace std; const int maxn = 1e5 + 50;...
2018-04-10
0
378
第十三次csp 第二题 碰撞的小球
模拟 #include <bits/stdc++.h> using namespace std; int n,l,t; struct ball { int pos,v; void init(int p) { pos=p; v=1;...
2018-04-03
0
416
4.4 c++ 上机 写一个动态的数组类
写一个关于学生的动态数组类 其中还卡了一会儿,因为直接调用了封装好的动态数组类中的private成员不自知,卡了好久。。注意细节吧 #include <bits/stdc++.h> using namespace std; class student { private: ...
2018-04-03
0
336
第十三次csp 第一题 跳一跳
#include <iostream> #include <bits/stdc++.h> using namespace std; int ans=0; int main() { int s; int t=0; int flag=0; int...
2018-04-03
0
467
c++作业html语言的简单识别
比较简单的html语言识别 ,反正就暴力处理吧,进一步的话可以把标签都保存下来,判断匹配问题,题目没要求就没写 输入 <html> i like the book <tag> this is a tree\n abs </tag>like father li...
2018-04-03
0
380
首页
上一页
10
11
12
13
14
15
16
17
18
19
下一页
末页