`
ruantongsheng
  • 浏览: 21844 次
  • 来自: ...
社区版块
存档分类
最新评论

suan fa

 
阅读更多
1.==============================ABC3Threads============================
package test;


public class ABC3Threads {

static boolean taStarted=false;
static boolean tbStarted=false;
static boolean tcStarted=false;
public static void main(String[] args) {
try {

int i=0;
while(i++<10){
taStarted=false;
tbStarted=false;
tcStarted=false;
Object oA=new Object();
Object oB=new Object();
Object oC=new Object();
OutputThread ta=new OutputThread(oC, oA,"A");
OutputThread tb=new OutputThread(oA, oB,"B");
OutputThread tc=new OutputThread(oB, oC,"C");

ta.start();
// Thread.sleep(3);
while(!taStarted){
Thread.sleep(1);
}
tb.start();
while(!tbStarted){
Thread.sleep(1);
}
//Thread.sleep(3);
tc.start();
//Thread.sleep(1000);
while(ta.isAlive()){
Thread.sleep(1);

}

System.out.println("");
// Thread.sleep(3111);
// ta.interrupt();
// tb.interrupt();
// tc.interrupt();
ta.stop();
tb.stop();
tc.stop();
}
System.exit(0);
} catch (Exception e) {
e.printStackTrace();
}
}
}
class OutputThread extends Thread{
Object obj1;
Object obj2;
String name;
int i=10;
public OutputThread(Object o1,Object o2,String name) {
obj1=o1;
obj2=o2;
this.name=name;
}
public void run() {
while(i-->0){
//System.out.println("i===================="+i);
synchronized (obj1) {
synchronized (obj2) {
try {
System.out.print(name);
if(name.equals("A")&&i==9){
ABC3Threads.taStarted=true;
}
if(name.equals("B")&&i==9){
ABC3Threads.tbStarted=true;
}
if(name.equals("C")&&i==9){
ABC3Threads.tcStarted=true;
}
obj2.notify();
} catch (Exception e) {
e.printStackTrace();
}
}
try {
obj1.wait();
} catch (Exception e) {
e.printStackTrace();
}
}
}

}
}

2.==============================ABCD4Threads============================
package test;

public class ABCD4Threads {

public static void main(String[] args) {
try {
Object a=new Object();
Object b=new Object();
Object c=new Object();
Object d=new Object();
ABCD4T ta=new ABCD4T(d, a, "A");
ABCD4T tb=new ABCD4T(a, b, "B");
ABCD4T tc=new ABCD4T(b, c, "C");
ABCD4T td=new ABCD4T(c, d, "D");

ta.start();
Thread.sleep(50);
tb.start();
Thread.sleep(50);
tc.start();
Thread.sleep(50);
td.start();
//System.exit(0);
} catch (Exception e) {
e.printStackTrace();
}
}
}

class ABCD4T extends Thread {
Object p1;
Object c;
String name;

public ABCD4T(Object p1,Object c, String name) {
super(name);
this.p1 = p1;
this.c = c;
this.name = name;
}
int i=10;
public void run() {
try {
while(i-->0){
String namemmm=this.getName();
synchronized (p1) {
synchronized (c) {
System.out.print(name);
c.notify();
}
p1.wait();
}
}
} catch (Exception e) {
e.printStackTrace();
}
}
}

3.==============================PutOneGetOne============================
package test;

public class PutOneGetOne {

String objg ;
public static void main(String[] args) {
try {
quangKu s=new quangKu();
F ft=new F(s);
Q qt=new Q(s);
s.setFQ(ft, qt);
ft.start();
Thread.sleep(10);
qt.start();

} catch (Exception e) {
e.printStackTrace();
}
System.exit(0);
}
}
class quangKu{
F f;
Q q;
public void setFQ(F f,Q q) {
this.f=f;
this.q=q;
}
String objg ;
public  void put(String obj){
try {
synchronized (f) {
synchronized (q) {
objg=obj;
System.out.println("put:"+objg);
q.notify();
}
f.wait();
}

} catch (Exception e) {
e.printStackTrace();
}
}
public  void get(){
try {
synchronized (q) {
synchronized (f) {

System.out.println("get:"+objg);
f.notify();
}
q.wait();

}
} catch (Exception e) {
e.printStackTrace();
}

}
}
class F extends Thread{
quangKu s;
public F(quangKu s) {
this.s=s;

}
int i=10;
public void run() {

try {
while(i-->0){

s.put(i+"");
}
} catch (Exception e) {
e.printStackTrace();
}
}
}
class Q extends Thread{

quangKu s;
public Q(quangKu s) {
this.s=s;
}
int i=10;
public void run() {
while(i-->0){
s.get();
}
}
}

4.==============================JiCheng============================
package test;

public class JiCheng {

public static void main(String[] args) {
try {
System.out.println(jicheng(100000));
} catch (Exception e) {
e.printStackTrace();
}
}
private static String jicheng(int n)throws Exception{
int weiShu=1;
//System.out.println(Integer.MAX_VALUE);
int []result=new int[21474836];
result[0]=1;
while(n>1){
int jinWei=0;
for(int i=0;i<weiShu;i++){
int temp=result[i]*n+jinWei;
int geWei=temp%10;
jinWei=temp/10;
result[i]=geWei;

}
//==process jinWei
while(jinWei>0){
int nextGeWei=jinWei%10;
result[weiShu++]=nextGeWei;
jinWei/=10;
}
n--;
}
//=======================process result
String res="";
for(int i=weiShu-1;i>=0;i--){
res+=result[i];
}
return res;
}
}
分享到:
评论

相关推荐

    据结构算法 shu ju jie gou suan fa : C++Builder 6.0程序集

    据结构算法 shu ju jie gou suan fa : C++Builder 6.0程序集

    android suan fa

    在Android游戏开发中,"suan fa"(算法)扮演着至关重要的角色。算法是解决特定问题或执行特定任务的步骤序列,对于优化游戏性能、提高用户体验和实现复杂功能至关重要。以下将详细介绍一些在Android游戏开发中常见...

    yi chuan suan fa

    通过一个典型的测试函数,测试遗传算法设计的好坏

    suan fa fen xi

    基本算法fenxi , 附带源码, 采用模板,C++语言描述

    floyd suan fa

    此代码是函数文件,只需调用即可求得结果。建立一个矩阵,再把矩阵带入函数

    c_chang_yong_suan_fa.rar_FA c++代码_fa

    本压缩包"**c_chang_yong_suan_fa.rar**"包含了一些C++实现的常见算法,对于学习和提升编程技能非常有帮助。下面我们将深入探讨这些算法以及C++编程的相关知识点。 1. **排序算法**:排序是计算机科学中最基础也是...

    问题四_yichuansuanfa_

    yi chuang suan fa yi

    ci-pan-diao-du-suan-fa.zip_操作系统开发_C/C++_

    在这个名为"ci-pan-diao-du-suan-fa.zip"的压缩包中,我们很显然会发现一个C语言实现的磁盘调度算法模拟项目。 磁盘调度算法的目的是减少平均寻道时间(Average Seek Time),以提高磁盘操作的效率。常见的磁盘调度...

    dijkstrasuanfa.rar_最短路径c语言

    在"**dijkstra suan fa.txt**"文件中,可能包含了以下内容: - Dijkstra算法的C语言代码实现,包括数据结构(如邻接矩阵或邻接表)的定义,以及算法的主流程。 - 代码中可能包含了一些关键函数,如初始化节点距离、...

    che-pai-shi-bie-suan-fa.zip_che

    本文将围绕"che-pai-shi-bie-suan-fa.zip_che"这个压缩包中的源程序,深入探讨车牌识别的核心算法。 在提供的源代码中,我们看到有两个关键文件:getword.m和qiege.m。它们分别对应于车牌识别过程中的字符分割和...

    FPGA实现FFT算法

    zai xue xi fpga yao liaojie yi xie suan fa shi hen tou tong ,zhe ge dui chu xuezhe yinggai you bangzhu

    pai-xu-suan-fa.zip_希尔排序

    希尔排序(Shell Sort)是一种基于插入排序的快速排序方法,由Donald Shell于1959年提出。它的主要思想是将待排序的元素按照一定的间隔分组,对每组进行插入排序,然后逐渐减小间隔,直到间隔为1,此时整个序列视为...

    FCM_Ju_lei_suan_fa.rar_FCM聚类_fa_fcm 改进_改进FCM算法_聚类fcm

    该文件包含了一般的FCM聚类算法和改进的FCM聚类算法

    tan-xin-suan-fa.rar_M?n

    C语言结构化实现贪心算法,利用贪心策略解决背包问题。现有载重为M公斤的背包和n种货物。第i种货物的重量为Wi,它的总价值为Pi,假定M、Wi、Pi均为整数。设计程序给出装货方法,使装入背包的货物总价值达到最大

    yi-chuan-suan-fa.rar_遗传_遗传 算法_遗传算法 _遗传算法 matlab_遗传算法程序

    在标题"yi-chuan-suan-fa.rar_遗传_遗传算法_遗传算法_matlab_遗传算法程序"中,我们可以看出这是一个与遗传算法相关的MATLAB程序。描述提到这是作者自编的遗传算法程序,已经得到了周围朋友的认可,并且分享给大家...

    tu-xiang-chu-li-suan-fa-ji-he.rar_tu_www.chu.chu.tu

    文件中包含各种图像处理源代码,包括二值化处理的源代码,对图像进行直方图均衡处理的源代码,对图像进行中值滤波处理(图像复原)的源代码,对图像进行均值滤波处理(图像复原)的源代码对图像进行对角镜像处理...

    suan-demo:suan系统演示

    关于计算共形几何的Jupyter注释 如何开始 要查看注释,只需在终端中发出以下命令 在bash中: . hello jupyter notebook 或在zsh中: . ./hello jupyter notebook

    pai_xu_suan_fa.rar_数据结构_C/C++_

    本文将深入探讨标题" pai_xu_suan_fa.rar_数据结构_C/C++_"所涵盖的几个核心排序算法:直接插入排序、冒泡排序、希尔排序以及快速排序。 首先,我们来看直接插入排序。这是一种简单直观的排序算法,适用于小规模或...

    DES-suan-fa-yan-shi.rar_压缩解压_Asm_

    这个“DES-suan-fa-yan-shi.rar”压缩文件显然包含了关于DES算法的演示程序,很可能是用汇编语言(Asm)编写的,因为标签中提到了"Asm"。汇编语言是一种低级编程语言,它直接对应于计算机的机器指令,对于理解底层的...

    shu zhi ji suan 插值法

    插值法 cha zhi fa de kengc wen kang mei shen me yong de

Global site tag (gtag.js) - Google Analytics