在之前的几个学期,我并没有很认真的学习专业知识,都是水水的过,不懂的就会去问别人,自学的能力比较欠缺。在新学期听到老师对这门课程的要求与安排,我希望自己能在这门课程中培养对编程的兴趣以及一定的自学能力,以及与同学之间的合作能力,还有能够独立写出一些简单的小程序小游戏之类的就不错了。饿,我可能会选择安...
分类:
其他 时间:
2015-09-15 21:46:53
收藏:
0 评论:
0 赞:
0 阅读:
246
A. Bear and ElectionsLimak is a grizzly bear who desires power and adoration. He wants to win in upcoming elections and rule over the Bearland.There a...
分类:
其他 时间:
2015-09-15 21:46:43
收藏:
0 评论:
0 赞:
0 阅读:
299
QT5 发布时,莫过于依赖动态链接库(dll) , 但是,QT5的动态链接库貌似都有2套 ,例如 Qt5Core (针对realese) , Qt5Cored (针对debug) ,凡事末尾带d的都是debug文件需要的链接库,莫嫌博主啰嗦A 关于发布1.首先,我们得找到自己安装QT的目录2.找到上...
分类:
Windows开发 时间:
2015-09-15 21:46:34
收藏:
0 评论:
0 赞:
1 阅读:
716
//用格式化(fprintf和fscanf函数)的方式读写文件【用格式化的方式向文件中写入数据】#include#includeint main(){ int i=12,f=3; FILE *fp; if((fp=fopen("f:\\FILE_1\\file_4.txt","w"))==NULL)...
分类:
其他 时间:
2015-09-15 21:46:23
收藏:
0 评论:
0 赞:
0 阅读:
228
1.Button中创建android:onClick="sendmessage"sendmessage方法名 1 //MAIN_acitivity创建这个同名独立方法 响应Button的Click的事件 2 public void sendmessage(View view){ 3 ...
分类:
其他 时间:
2015-09-15 21:46:14
收藏:
0 评论:
0 赞:
0 阅读:
208
http://www.runoob.com/jquerymobile/jquerymobile-tutorial.html
分类:
编程语言 时间:
2015-09-15 21:46:04
收藏:
0 评论:
0 赞:
0 阅读:
203
import java.util.Scanner;class rectangle{ int l,w; rectangle(int lon,int wid){ l=lon; w=wid;}int Area(){ int area; return area=l*w;}}class ss{ public ...
分类:
编程语言 时间:
2015-09-15 21:45:43
收藏:
0 评论:
0 赞:
0 阅读:
122
nodejs编译js文件时对js文件的包装 nodejs在编译js文件时会对获取的js文件内容进行头尾包装 (function(exports,require,module,__filename,__dirname){\n 和 \}),正常的js文件就变成了:(function(exports,r....
分类:
Web开发 时间:
2015-09-15 21:45:24
收藏:
0 评论:
0 赞:
0 阅读:
755
Given an array containingndistinct numbers taken from0, 1, 2, ..., n, find the one that is missing from the array.For example,Givennums=[0, 1, 3]retur...
分类:
其他 时间:
2015-09-15 21:45:13
收藏:
0 评论:
0 赞:
0 阅读:
217
1、引入jar包,3.8 1 2 org.apache.poi 3 poi 4 ${poi.version} 5 6 7 org.apache.poi 8 poi-ooxml 9 ${poi.version}10 2、Excel单元格参数类定义E...
分类:
编程语言 时间:
2015-09-15 21:44:43
收藏:
0 评论:
0 赞:
0 阅读:
168
webService 基础
分类:
Web开发 时间:
2015-09-15 21:44:33
收藏:
0 评论:
0 赞:
0 阅读:
146
一 . 文件存储 FileOutputStream out = openFileOutput("data",Context.MODE_PRIVATE); BufferedWriter writer = new BufferedWriter(new OutputStream(out)); String...
分类:
移动平台 时间:
2015-09-15 21:44:23
收藏:
0 评论:
0 赞:
0 阅读:
227
下载安装包MSI http://yunpan.cn/cmhHdTPkXZRM2 访问密码 9b6c上边提供的是 MongoDB 3.0.6 64Bit 的安装包 安装如果不想直接安装在C盘..就要选择自定义安装喽..就是选择全部安装和自定义的那一步..全部安装是默认安装C盘的..我这里...
分类:
数据库技术 时间:
2015-09-15 21:44:13
收藏:
0 评论:
0 赞:
0 阅读:
555
int *a,*b;*a=0;*b=0;一定要初始化,不然返回地址
分类:
其他 时间:
2015-09-15 21:44:03
收藏:
0 评论:
0 赞:
0 阅读:
462
OJ它是Online Judge缩写系统,来在线检測程序源码的正确性。著名的OJ有RQNOJ、URAL等。国内著名的题库有北京大学题库、浙江大学题库等。国外的题库包含乌拉尔大学、瓦拉杜利德大学题库等。简单介绍: Online Judge系统(简称OJ)是一个在线的判题系统。用户能够在线提交程...
分类:
其他 时间:
2015-09-15 21:43:53
收藏:
0 评论:
0 赞:
0 阅读:
1112
UDP是面向非连接的协议,因此在实现UDP服务器时,服务器不用总是处于监听状态。可以直接收发数据。服务器端1.初始化WASStartup ( ... )2.创建Sockets = socket ( .. )3.绑定bind( .. )4.收发数据recvfrom( .. )sendto(..)5.关...
分类:
Windows开发 时间:
2015-09-15 21:43:33
收藏:
0 评论:
0 赞:
0 阅读:
326
首先对于每个位置,求出它开始长度为y的横行的hash值,然后对于hash值再求一次竖列的hash值,排序后求出众数即可。时间复杂度$O(n^2\log n)$。#include#include#define N 1010typedef unsigned long long ll;const ll D...
分类:
其他 时间:
2015-09-15 21:43:13
收藏:
0 评论:
0 赞:
0 阅读:
254
转载于:http://blog.itpub.net/27006877/viewspace-739059/前段时间ORACLE把10G的下载从官网拿掉了 ,许多童鞋不知道ORACLE 10g 的下载地址,这里我附上oracle 10g 下载的链接,方便大家下载。4种包的介绍: ***_databas....
分类:
数据库技术 时间:
2015-09-15 21:43:03
收藏:
0 评论:
0 赞:
0 阅读:
447
题意:给一棵树,n个节点,给定一个数k,求任意满足dist(a,b) 2 #include 3 #include 4 #include 5 #include 6 #include 7 #define pii pair 8 #define INF 0x3f3f3f3f 9 #...
分类:
其他 时间:
2015-09-15 21:42:53
收藏:
0 评论:
0 赞:
0 阅读:
283
C -Circular SequenceTime Limit:3000MSMemory Limit:0KB64bit IO Format:%lld & %lluSubmitStatusDescriptionSome DNA sequences exist in circular forms as i...
分类:
其他 时间:
2015-09-15 21:42:43
收藏:
0 评论:
0 赞:
0 阅读:
276