码迷,mamicode.com
首页 >  
搜索关键字:ignatius and the pri    ( 1549个结果
golang复制一个指针对象(反射)
package main import ( "fmt" "reflect" ) type User struct { Name string Age int } func copyPoint(m *User) *User{ vt := reflect.TypeOf(m).Elem() fmt.Pri ...
分类:其他好文   时间:2020-05-16 23:32:24    阅读次数:201
Lambda表达式的练习(抽象方法无参,无返回值)
接口定义 public interface Eatable { void eat(); } View Code 接口实现类 public class EatableImp implements Eatable{ @Override public void eat() { System.out.pri ...
分类:其他好文   时间:2020-05-15 13:59:58    阅读次数:78
论文翻译:《PRIMES is in P》——素性测试的确定性多项式时间算法研究
这篇论文主要研究素性测试的多项式时间算法,由于没有在网上找到合适的翻译版本,本人自行翻译了一个版本供学习使用。如有错误请指出。 英文原版的论文已打包上传 https://files.cnblogs.com/files/allegro vivace/PrimesinP_original.zip PRI ...
分类:编程语言   时间:2020-05-15 09:20:51    阅读次数:80
创建型模式之单例模式
package test; public class SingletonDemo1 { /*单例模式 饿汉模式 * */ //类初始化时,立即加载这个对象,线程安全。缺点不能延迟加载 private static SingletonDemo1 st=new SingletonDemo1(); pri ...
分类:其他好文   时间:2020-05-14 23:54:37    阅读次数:101
Java-List元素判断
判断List是否包含元素 List list = new ArrayList();list.add("aa");list.add("bb");list.add("cc");System.out.print(list.contains("cc"));//输出结果--trueSystem.out.pri ...
分类:编程语言   时间:2020-05-08 16:18:04    阅读次数:74
递归函数
一、递归函数定义 什么是递归: 在一个函数里在调用这个函数本身 最大递归层数是:997 最大递归层数可以修改,建议不要去修改 (如果997层数递归都没解决你的问题那只有两个原因:一、你的代码不适合用递归,二、你的代码太烂~ count = 1def xiake(): global count pri ...
分类:其他好文   时间:2020-05-08 15:56:42    阅读次数:79
JAVA顺序队列
test.java public class test{ public static void main(String[] args) { //创建一个队列 ArrayQueue1 a = new ArrayQueue1(); a.creatArrayQueue(5); System.out.pri ...
分类:编程语言   时间:2020-05-04 13:10:51    阅读次数:53
多线程——生产者消费者问题
``` import java.util.LinkedList; /** * @Author 昊 * @Create 2020/5/2 9:34 * @Description 临界资源,存放汉堡 */ public class Box { //要进行频繁的删除操作所以使用LinkedList pri... ...
分类:编程语言   时间:2020-05-02 21:22:28    阅读次数:77
pyhon__new__方法.py
class A(object): def __init__(self,*args,**kwargs): print("init 方法") def __new__(cls, *args, **kwargs): print("new 方法") return object.__new__(cls) pri ...
分类:其他好文   时间:2020-05-02 20:43:50    阅读次数:57
hdu_看病要排队
1 #include<iostream> 2 #include<string> 3 #include<queue> 4 using namespace std; 5 int k; 6 struct sortt{ 7 int pri; 8 int id; 9 friend bool operator< ...
分类:其他好文   时间:2020-05-01 23:44:44    阅读次数:63
1549条   上一页 1 ... 5 6 7 8 9 ... 155 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!