上一页 1 ··· 4 5 6 7 8 9 10 11 12 13 下一页

2017年4月25日

用模重复平方法求b^n mod m

摘要: package 模重复平方法;import java.math.BigInteger;import java.util.Scanner;/* * 要求: * 1编程实现模重复平方计算法 */public class Ah { public static void main(String[] args... 阅读全文

posted @ 2017-04-25 02:00 我是蒟蒻 阅读(380) 评论(0) 推荐(0) 编辑

2017年4月14日

setPriority()

摘要: public class Thread1 extends Thread{ String name; public Thread1(String name) { this.name=name; } public void run() { int i=1; while(i<=5) { ... 阅读全文

posted @ 2017-04-14 01:06 我是蒟蒻 阅读(193) 评论(0) 推荐(0) 编辑

2017年4月13日

执行完线程1再执行线程2 以及线程1和线程2共同执行

摘要: 1package test;public class AThread extends Thread{ String name; public AThread(String name) { this.name=name; } static Object printer=new Object(); ... 阅读全文

posted @ 2017-04-13 22:01 我是蒟蒻 阅读(231) 评论(0) 推荐(0) 编辑

2017年3月30日

KMP的next

摘要: 1关于右移后K位置的查找,北大版数据结构已经说的很清楚2关于p[k]!=p[i] ,另k=next[k]是最长子串,不管是清华版数据结构还是北大版..都没有解释原因,只是短短两行带过。原因是这个http://www.rudy-yuan.net/archives/182/ 阅读全文

posted @ 2017-03-30 01:17 我是蒟蒻 阅读(88) 评论(0) 推荐(0) 编辑

2017年3月19日

关于codeblocks左边文件栏不见的问题

摘要: 解决:菜单栏view---manager 左边出来的那一块中的projects就是你想要的 阅读全文

posted @ 2017-03-19 23:36 我是蒟蒻 阅读(1622) 评论(0) 推荐(1) 编辑

数据结构第二章内容

摘要: 顺序表1#include using namespace std;#define LIST_INIT_SIZE 10#define LISTINCREMENT 2typedef int ElemType;struct SqList{ ElemType* elem; int length;... 阅读全文

posted @ 2017-03-19 23:19 我是蒟蒻 阅读(113) 评论(0) 推荐(0) 编辑

2016年11月8日

设置notepad++ 的 tab 设为4个空格和设置为中文语言

摘要: 如何设置成中文语言?settings--preferences--简体中文然后设置成4个空格:设置--首选项--设置成如图 阅读全文

posted @ 2016-11-08 21:50 我是蒟蒻 阅读(133) 评论(0) 推荐(0) 编辑

2016年10月23日

字面量

摘要: 字面量是指由字母,数字等构成的字符串或者数值,它只能作为右值出现,所谓右值是指等号右边的值,如:int a=123这里的a为左值,123为右值。 阅读全文

posted @ 2016-10-23 15:44 我是蒟蒻 阅读(306) 评论(0) 推荐(0) 编辑

2016年10月21日

..没什么

摘要: 麦子学院的html课程不错..我已经开始学CSS了 阅读全文

posted @ 2016-10-21 21:38 我是蒟蒻 阅读(75) 评论(0) 推荐(0) 编辑

2016年10月18日

今天做的HTML练习

摘要: 明天从复选框开始学习http://www.w3school.com.cn/html/html_form_input_types.asp 阅读全文

posted @ 2016-10-18 21:41 我是蒟蒻 阅读(68) 评论(0) 推荐(0) 编辑

上一页 1 ··· 4 5 6 7 8 9 10 11 12 13 下一页

导航