Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DNA编码 2020年10月7日 后排序的 --++ 一处错误, 已经纠正, 罗瑶光, #6

Open
yaoguangluo opened this issue Apr 16, 2021 · 4 comments

Comments

@yaoguangluo
Copy link
Owner

yaoguangluo commented Apr 16, 2021

具体著作权使用Gitee链接见:
Gitee镜像: https://gitee.com/DetaChina/sort/blob/master/LYG9DWithDoubleQuickSort4D.java 工程 2020年7月14 9点37分
Github镜像: https://github.com/yaoguangluo/sort/blob/master/LYG9DWithDoubleQuickSort4D.java
private int partition(double[] array, int leftPoint, int rightPoint) {
double x= array[leftPoint]< array[rightPoint]? array[leftPoint]: array[rightPoint];
int leftPointReflection= leftPoint;
while(leftPointReflection++ < rightPoint){
while(!(array[leftPointReflection++]> x|| leftPointReflection> rightPoint)) {}
while(array[rightPoint--]> x) {}
if(--leftPointReflection< ++rightPoint){
double temp= array[rightPoint];
array[rightPoint]= array[leftPointReflection];
array[leftPointReflection]= temp;
}
}
array[leftPoint]= array[rightPoint];
array[rightPoint]= x;
return rightPoint;
}
对比PDF发现出现了加加减减手误, 已经纠正如下, 问题最早出现在2020年10月7日22.41至2020年10月8日12.26之间
private int partition(int[] a, int lp, int rp) {
double x= a[lp]< a[rp]? a[lp]: a[rp];
int lp1= lp;
while(lp1++ < rp){
while(!(a[lp1++]> x|| lp1> rp)) {}
while(a[rp--]> x) {}
if(--lp1< ++rp){
double temp= a[rp];
a[rp]= a[lp1];
a[lp1]= temp;
}
}
a[lp]= a[rp];
a[rp]= x;
return rp;
}

@yaoguangluo
Copy link
Owner Author

yaoguangluo commented Apr 17, 2021

另外, 鸟嘌呤和二氨基腺嘌呤2位 NH2 根,不是NH3, 我因为是复制了百科上的标准 鸟嘌呤图片然后在windows自带画图文件中设计的, 当时肉眼看见的明明是正确的, 我还特意写了NH2CH3的 pair, 我还特意写了 鸟嘌呤和二氨基腺嘌呤 关键字, 同时我的手写笔记还特意 拍照在微信等发布了过程溯源, 而且都是正确的. 这个已经下证书了, 哈哈 猫腻不管了, 之后我的DNA一二三卷我会统一进行格式化和不断检查, 变成 第二代 著作权版本. 急什么.

@yaoguangluo
Copy link
Owner Author

猫腻哥还是收手吧,我不是投稿,可以被拒绝, 我是申请著作权, 你是把我玩成狗, 国家也得给狗下个证书,这是狗写的.

@yaoguangluo
Copy link
Owner Author

我的高中生活, CSDN 等 很清楚,习惯了.

@yaoguangluo
Copy link
Owner Author

关于<类人DNA与 神经元基于催化算子映射编码方式--++修正版>, 今天检查了下又做了修正, 我把当前政治人物姓名和经济实体标志名称. 如 习**, 袁**, 钟**, 长江三***** 等过滤了下.
已经上传git.
https://gitee.com/DetaChina/collection-of-papers-by-deta/blob/5a9e7b5c6c09e1edbeae7f594a6d9f33eee7542e/DNA%20编码方式1.2.2%20中译英混合版仅仅修正22页--%20%202行并过滤当年政治人物姓名..pdf

罗瑶光

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant