- 博客(25)
- 资源 (4)
- 收藏
- 关注
转载 How visa payment process
We write about a lot of payment card industry-specific staff here on this blog: services, systems, products, best practices, etc. We try to explain, as best we can, how the credit card processing
2016-09-14 12:09:01
1168
转载 Diffie-Hellman加密算法
http://www.jiamisoft.com/blog/index.php/3165-diffie-hellmanjiamisuanfa.htmlDiffie-Hellman加密算法作者:xiaoge 发布于:2013-02-26 16:42 文章来源:夏冰加密软件技术博客 [导读] Diffie-Hellman加密算法在于需要安全通信的双方可以用这个
2016-01-04 15:00:01
2405
转载 Ubuntu 安装 wireshark
在ubuntu下,使用wireshark也是很有必要的。虽然可以使用tcpdump等工具。ubuntu:11.10 1. sudo apt-get install wireshark 出于安全方面的考虑,普通用户不能够打开网卡设备进行抓包,wireshark不建议用户通过sudo在root权限下运行,wireshark为ubuntu(Debian)用户提供了一种
2015-12-10 14:34:23
682
原创 What do I desire
1. I want to build a house, my oun house, with a farm behind.2. I want to have a car3. I want learn violin4. travelling5. take care of my father and mother
2015-10-29 13:50:14
1304
转载 ACM算法学习
转载自http://blog.chinaunix.net/uid-24488136-id-64832.html偶然在论坛上看到了介绍一个搞ACM的需要掌握的算法的sheet。我感觉蛮有参考感的,在程序这条路上搞深了,结果肯定是算法和数学了,我就整理了下,好给自己提个醒。 ACM的竞赛性强,因此自己应该和自己的实际应用联系起来.适合自己的才是好的,有的人不适合搞算法,喜欢系统架构
2015-10-18 17:00:52
434
原创 ubuntu 下安装jad反编译器,显示源代码
1.下载jadhttp://varaneckas.com/jad/Jad 1.5.8e for Linux (statically linked) 解压到home/XXX/program/jad下,运行./jad出现这个表示安装成功。2. 下载eclipse jad 插件http://sourceforge.net/projects/jadclipse/?s
2015-10-08 09:48:40
1469
原创 EJBCA源码调试
检出EJBCA,可以从www.ejbca.org官网上检出。http://www.ejbca.org/repository.html下载eclipsehttp://www.eclipse.org/home/index.php检出后导入到eclipse上 在package explorer单击右键import......这时会出现很多错误 missing library
2015-09-25 14:19:54
853
原创 POJ1247解题报告
import java.util.Scanner;public class Main { /** * @param args */ public static void main(String[] args){ Scanner input=new Scanner(System.in); int[] b; do{ int num=input.nextInt();
2015-09-08 18:23:36
361
原创 POJ1207解题报告 Java
import java.util.Scanner;public class Main { public static int[] data=new int[10001]; /** * @param args */ public static void main(String[] args){ Scanner input=new Scanner(System.in); in
2015-09-08 17:36:18
787
原创 POJ1118 解题报告JAVA
import java.util.Scanner;public class Main { public static void main(String[] args){ Scanner input=new Scanner(System.in); int size=input.nextInt(); while(size!=0){ int[][] a=new int[size]
2015-09-08 16:25:44
548
原创 poj1046 解题报告
秒杀import java.util.Scanner;public class Main { public static void main(String[] args){ Scanner input=new Scanner(System.in); int[][] a=new int[16][3]; for(int i=0;i<16;i++){ a[i][0
2015-09-07 23:49:05
482
原创 POJ1007 解题报告
首先我用了最笨的办法,哈哈。import java.util.Scanner;public class Main { public static void main(String[] args){ Scanner input=new Scanner(System.in); int size=input.nextInt(); int lines=input.nextInt();
2015-09-07 22:51:00
370
原创 poj1005 解题报告
import java.util.Scanner;import java.lang.Math;public class Main { public static void main(String[] args){ Scanner input=new Scanner(System.in); int size=input.nextInt(); double x,y,squ
2015-09-07 00:05:08
343
原创 poj1004 解题报告
import java.util.Scanner;import java.text.DecimalFormat;public class Main { public static void main(String[] args){ Scanner input=new Scanner(System.in); double sum=0; for(int i=1;i
2015-09-06 23:24:29
358
原创 POJ1003 水题不解释
import java.util.Scanner;public class Main { public static void main(String[] args){ Scanner input=new Scanner(System.in); while(input.hasNext()){ double target=input.nextFloat(); if
2015-09-06 21:17:10
391
原创 jPanel子类无法使用.setBackground()函数的问题
主函数中: /************carve*************/ MyCarve carve=new MyCarve(); carve.setBackground(Color.RED); //这句话没用 carve.setLayout(new GridLayout(1,1)); mainPanel.add(carve);MyCarv
2015-05-06 14:24:23
1820
转载 jQuery 字符串处理
1.去掉空格 var txt=$.trim($("txt1").val()); 2.转为数字 txtNum=Number($.trim(txt)) + 1; var thisEle = $("#para").css("font-size"); //获取字体大小 var textFontSize = parseFloat(thisEle , 10);
2015-04-28 14:39:42
392
转载 Spring中通过注解定义定时任务
1.首先加入下载spring3.2 ,http://projects.spring.io/spring-framework/2.加入jar包,在applicationContext.xml加入声明-xmlns加入xmlns:task="http://www.springframework.org/schema/task"-xsi加入http://www.springframewor
2015-04-28 10:25:21
645
原创 OpenCV 函数从易到难
int cvSetCaptureProperty( CvCapture* capture, int property_id, double value );
2014-04-07 21:09:59
618
原创 C++笔试题(1)
double x,y;x=1;y=x+(double)3/2;几个C++笔试题以下是几个我遇到过的C++笔试题,因为做不太确定自己的答案,所以在心里默记下来,回来验证一下。1.x,y为double,x=1,y=x+3/2,求y的值。int main(){ double x,y; x=1; y=x+3/2; cout<<y<<endl
2013-11-12 21:50:21
542
原创 基础算法之贪心法1
1.2贪心法声明:本分类中的所有博文(包括此篇博文),均为本人在学习《实用算法分析与程序设计》时所作的笔记。其中的例子全引用自《实用算法分析与程序设计》。C++代码为个人原创,转载请注明出处。在某些情况下局部最优选择能得出全局最优解。如下。例1.删数问题int main(){ char data[256]; cout<<"please input the number"<
2013-10-27 17:31:05
477
原创 C++中建立派生类对象时构造函数的调用顺序
C++中建立派生类对象时构造函数的调用顺序建立派生类对象时,派生类构造函数的调用顺序如下:执行基类的构造函数。当派生类有多个基类时,处于同一层次的各个基类的构造函数的调用顺序取决于定义派生类时生命的顺序(从左至右),而与在派生类构造函数的成员初始化列表中给出的顺序无关。如果派生类的基类也是一个派生类,则每个派生类值需负责它的直接基类的构造,依次上溯。执行成员对象的构造函数(如果有的
2013-10-24 11:43:30
11077
香港大学DataMining课件 数据挖掘
2015-01-04
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人