2019年7月7日

锤子线性的反转性预测

摘要: 锤子线型的反转性预测 锤子线型定义:k线的下影线长度至少是实体的两倍 趋势定义:上升趋势是指n天内股价上升 下降趋势是指n天内股价下降 趋势反转:每日前后n天内股票趋势(上升/下降)不同。 反转率:锤子线性出现时,股票趋势发生反转的概率。 A股验证: 以A股的前500支股票为实验样本,分析锤子线型对 阅读全文

posted @ 2019-07-07 11:42 zoghin 阅读(227) 评论(0) 推荐(0)

2017年8月15日

jQuery对象与DOM对象转换

摘要: 原文链接 http://www.cnblogs.com/ouyangping/p/6439939.html jQuery对象与DOM对象是不一样的 通过一个简单的例子,简单区分下jQuery对象与DOM对象: 通过一个简单的例子,简单区分下jQuery对象与DOM对象: <p id=”imooc”> 阅读全文

posted @ 2017-08-15 00:04 zoghin 阅读(314) 评论(0) 推荐(1)

2017年3月1日

fortran程序makefile

摘要: 原文来自http://marjan.fesb.hr/~psarajce/makefiles.html这是一片介绍fortran程序makefile文件编写的文章。正文: 假设有四个文件,分别是: main.f90 global.f90 function1.f90 subroutine1.f90 ma 阅读全文

posted @ 2017-03-01 19:43 zoghin 阅读(3522) 评论(0) 推荐(1)

2017年1月7日

C语言file相关函数学习

摘要: 1、errno_t fopen_s( FILE** pFile, const char *filename, const char *mode ); 注:fopen_s能过创建文件,但无法创建目录 eg: int main(){ char* fileName0 = "F:\\a\\t0.txt";  阅读全文

posted @ 2017-01-07 19:50 zoghin 阅读(277) 评论(0) 推荐(0)

2016年12月21日

8086cpu-intel汇编指令简介

摘要: jcxz 有条件跳转指令,cx为跳转条件。如果(cx)==0则跳转到指定标号处。跳转地址在机器码中已相对位置(-128~127)给出。 相当于 if((cx)==0) jump short 标号 用法: jcxz 标号 loop 循环指令,循环条件同样以cx给出,(cx)!=0时跳转到指定标号处,( 阅读全文

posted @ 2016-12-21 13:08 zoghin 阅读(528) 评论(0) 推荐(0)

2016年12月19日

debug命令简介

摘要: debug命令不区分大小,debug的命令都是一个字母,后跟或不跟参数 1、debug [路径\文件] [参数] [参数]……[参数] debug相应程序 2、 D(Dump) [地址] [范围] 显示主存单元的内容 3、E(Enter) [地址] [数据表] 用数据表中的数据修改从[地址]出开始主 阅读全文

posted @ 2016-12-19 23:19 zoghin 阅读(281) 评论(0) 推荐(0)

2016年6月28日

堆排序

摘要: 堆排序主要分为两步:创建最大堆和提取堆中最大元素。 首先,定义MAX-HEAPIFY函数: 该算法的时间复杂度为:T(n)=O(lgn); 创建最大堆:BUILD-MAX-HEAP 该函数的时间复杂度为:T(n)=O(nlgn); 选出最大元素构成有序序列:HEAP-SORT 该函数的时间复杂度为: 阅读全文

posted @ 2016-06-28 10:19 zoghin 阅读(171) 评论(0) 推荐(0)

2016年6月5日

Android——数据的存储和访问

摘要: 1、数据文件的存取操作 我们可以将数据存取在Android应用数据的默认存储地址,其地址为:安装包/data/data/<package name>/files/ 1)向文件中写入数据 public FileOutputStream openFileOutputStream(String name, 阅读全文

posted @ 2016-06-05 17:46 zoghin 阅读(291) 评论(0) 推荐(0)

2016年5月2日

Palindrome Pairs

摘要: Given a list of unique words. Find all pairs of distinct indices (i, j) in the given list, so that the concatenation of the two words, i.e. words[i] + 阅读全文

posted @ 2016-05-02 03:10 zoghin 阅读(236) 评论(0) 推荐(0)

2016年5月1日

Integer Break

摘要: Given a positive integer n, break it into the sum of at least two positive integers and maximize the product of those integers. Return the maximum pro 阅读全文

posted @ 2016-05-01 09:29 zoghin 阅读(231) 评论(0) 推荐(0)

导航