- 博客(280)
- 资源 (31)
- 收藏
- 关注
原创 如何利用excel计算百分位
如何利用excel计算百分位https://jingyan.baidu.com/article/359911f5483d5f57ff030649.html具体方法为:PERCENTILE(A2:A100, 0.75) 这种方式计算75%中位数
2022-03-28 17:57:17 5103
转载 TCP server 为什么一个端口可以建立多个连接?
转自segment fault TCP server 可以,TCP client 也可以。一个套接字只能建立一个连接,无论对于 server 还是 client。注意报错消息是: [Errno 106] (EISCONN) Transport endpoint is already connectedman 2 connect 说得很清楚了: Generally, co...
2018-03-14 16:57:09 6528 1
转载 select函数,poll函数,epoll函数
IO多路复用之select总结1. 基本概念2. select函数3、测试程序IO多路复用之poll 总结poll函数的事件标志符值TCP三次握手,四次挥手讲的比较好的socket中的函数listen解释IO多路复用之epoll总结1、基本知识2、epoll接口3、工作模式4、测试程序对stdin,stdout 和STDOUT_FILENO,STDIN_FI...
2018-03-14 16:44:03 3049 1
原创 知识积累
goland 应该是一个编辑工具,需要好好学习一下,定义为interface的话,会高亮a:=1a *= 1008610086;这样的话,会不会溢出?应该用大数库存储,但是int还没有溢出,如果再加一些位数,估计就溢出了有个防止溢出的方法func main(){ im := bing.NewInt(math.MaxInt64) in := im io:= bi...
2018-03-09 15:18:11 376
原创 位操作实现大小写转化
项目地址:中文翻译 https://github.com/HT524/500LineorLess_CNhttps://github.com/HT524/500LineorLess_CN/blob/master/DBDB:%20Dog%20Bed%20Database/DBDB:%E9%9D%9E%E5%85%B3%E7%B3%BB%E5%9E%8B%E6%95%B0%E6%8D%AE%E...
2018-03-08 18:59:25 415
原创 位操作实现大小写转化
位操作实现大小写转化下面是写的程序。#include <iostream>using namespace std;int main(){ char name[6]= "hello"; char name2[6] = "HeLLO";//即使里面存在小写,也不会影响到它. for(int i = 0 ;i < 5;i ++){ name[i] &= 0xDF
2018-03-05 16:41:45 441
转载 window下完整安装QT
window下完整安装QThttp://blog.csdn.net/u014304293/article/details/39393449转载的,其中有些需要改正的地方1.先下载最新版的 Qt Creator 给个我下载的地址,最好是自己直接去qt官网下载比较方便:Qt Creator 双击进行安装,默认安装实在C盘,我安装在D盘(这个随意),(如果安装库,需要的磁盘空间还是比较大的)如下
2017-11-01 18:37:55 847
转载 tensorflow CNN卷积神经网络
卷积神经网络CNNConvlutional Network卷积神经网络CNN(Convlutional Network)http://blog.csdn.net/pirage/article/details/53187483平移不变形translate invariance,位置不同内容不变。权重共享可以实现平移不变性,当两种输入可以获得同样的信息的时候,则应该共享权重,并利用这些输入共同训练权重。
2017-07-18 16:11:37 425
转载 tensorflow CNN卷积神经网络
卷积神经网络CNNConvlutional Network卷积神经网络CNN(Convlutional Network)http://blog.csdn.net/pirage/article/details/53187483平移不变形translate invariance,位置不同内容不变。权重共享可以实现平移不变性,当两种输入可以获得同样的信息的时候,则应该共享权重,并利用这些输入共同训练权重。
2017-07-18 15:48:01 464
原创 英语学习
in one’s delt 欠某人的情rolling in the deep 内心深处爱恨交织的意思Don’t loss yourself in resentment and bitterness 不能沉溺于愤怒和痛苦之中don’t keep away from papa 不要远离葩葩academy academic 发音不同于名词merit 价值优点的意思sporting house妓院 gy
2017-05-02 20:50:21 941
原创 C++11新特性
/*#include <string> #include <iostream> #include <set>using namespace std;template <typename T>class CPPCollection {public: //迭代器类 class Iterator{ public: int index;//元素下标
2017-04-09 22:10:47 443
原创 2017.4.4 复习
虚析构函数#include <iostream>using namespace std;class A{public: A(){ cout<<"A"<<endl; } virtual ~A(){ //如果不把析构函数声明为虚函数,有时候就调用不到,因此产生内存泄漏 cout<<"~A"<<endl; }};class B:p
2017-04-08 16:27:53 421
原创 编程之法-第一章字符串
已知字符串中的字符是互不相同的,现在把它们任意排列(例如,若已知字符是“ab”,则任意排列是“aa”,”ab”,”ba”,”bb”),编程按照字典序输出所有的组合。#include <iostream>#include <functional>#include <map>#include <vector>#include <algorithm>#include <cstring>usin
2017-04-02 22:31:03 580
原创 使用C++11让多线程开发变得简单
#include <iostream>#include <functional>#include <map>#include <vector>#include <algorithm>#include <cstring>#include <thread>using namespace std;void func(){ this_thread::sleep_for(chrono:
2017-04-02 19:25:38 1134
原创 类间偏移地址以及切割,static_cast
/*//得到A的每一个变量的偏移地址offset,可以产生一个object,也可以不产生~#include <iostream>#include <functional>using namespace std;struct A{ int i; int j;};int main(void){ A a; cout << (unsigned long)(&(a
2017-04-01 16:09:23 553
原创 第二章 构造函数语义学
#include <iostream>using namespace std;class A{ public: A(){ cout<<"default construct"<<endl; } A(const A&){ cout<<"copy constructor"<<endl;
2017-03-30 18:52:36 458
原创 C++ 快排
//把最后一个当主元 piovt int small = s; int pivot = a[e]; int i = s, j = e ; while( i < j){ if(a[i] >= pivot){ i++; }else{ swap(a[small],a[i]);
2017-03-29 16:58:34 626
转载 C++异常处理
C++语言本身或标准程序库所抛出的所有异常,都派生自基类exception。这是其他数个标准异常类别的基类,它们共同构成一个类体系:请输入图片描述这些标准异常类别分为三组:(1)语言本身所支持的异常此类异常用以支撑某些语言特性。主要包括: bad_alloc:new操作失败会抛出。 bad_cast:执行期间加在一个引用上面的动态性型别转换操作失败时抛出。 bad_typeid:执行RTTI时
2017-03-24 14:06:48 347
原创 给出每个站点之间的最短距离,求出最短路径,用unordered_map来实现,让你实现find_cheapest_transform函数
#include <map>#include <set>#include <list>#include <cmath>#include <ctime>#include <deque>#include <queue>#include <stack>#include <string>#include <bitset>#include <cstdio>#include <limits
2017-03-23 19:01:21 942
原创 C++ 11
#include <iostream>#include <typeinfo>using namespace std;class A{ public: static const char* getMessage(){ return "const hahha"; }};class B{ public: sta
2017-03-23 16:47:53 412
原创 raw_input() 与 input() Python
raw_input() 与 input() __ Python这两个均是 python 的内建函数,通过读取控制台的输入与用户实现交互。但他们的功能不尽相同。举两个小例子。 1 >>> raw_input_A = raw_input("raw_input: ") 2 raw_input: abc 3 >>> input_A = input("Input: ") 4 Input: abc
2017-02-12 20:56:35 396
原创 计算机视觉的比较有用的项目project, visual object tracking & human action recognition.
In Defense of Color-based Model-free Tracking 如果做tracking,可以考虑一下链接http://lrs.icg.tugraz.at/members/posseggerOcclusion Geodesics for Online Multi-Object Trackinghttp://lrs.icg.tugraz.at/publications.ph
2016-12-25 19:02:36 1019
原创 11.30 install caffe
http://blog.csdn.net/u011762313/article/details/47262549Today, I install the caffe according to the above link. In the light of this paper[1], I want to have a try about TDD.[1]Trajectory-Pooled Deep-C
2016-11-30 16:48:11 323
原创 windows vs2013连接数据库mysql示例代码
int create_student_table();//int create_sc_table();//int create_course_table();//int insert_rows_into_student_table();//int insert_rows_into_sc_table();//int insert_rows_into_course_table();//int
2016-10-16 17:10:31 2059
原创 back_up
Saliency Detection: A Boolean Map ApproachAction Recognition with Stacked Fisher VectorsChenglong Li, Xiao Wang, Lei Zhang, Jin Tang, Hejun Wu, Liang Lin*, “WELD: Weighted Low-rank Decomposition for Ro
2016-10-13 10:38:40 688
原创 计算机网络-C++基础知识,面试复习题
atoi函数#include <iostream>#include <cstring>using namespace std;int atoI(char *s){ if(s == NULL) { return -1; } int i = 0; int sum = 0; while(s[i] != NULL) {
2016-10-11 14:26:26 1024
原创 内存寻址、计算机组成原理等~
内存按字节编址,地址区间为[90000H,CFFFFH],若用32K*8bit的存储器芯片构成该内存,需要__块???(1)首先根据地址区间[90000H,CFFFFH],可以计算地址空间为:CFFFFH - 90000H + 1 = 40000H 因为10000H = 2^16B 那么 40000H = 4 * (2^16)B (2)32K = 32*(2^10)B 那么内存所需芯片数为:
2016-09-26 11:36:38 2175
原创 数列题
6 = 2 × 3 10= 2 × 5 18= 2 × 9 32= 2 × 16 观察数列 3 ,5 ,9,16 5 - 3 = 2 9 - 5 = 4 16- 9 = 7 再观察数列 2,4,7 4 - 2 = 2 7 - 4 = 3 由此我可以说2,4,7是差加1的数列,该数列的下一项是11 那么数列3 ,5 ,9,16 的下一项就是27 所以
2016-09-25 22:24:08 544
原创 公司面试题
写出atoi(char * s)的实现#include <iostream>using namespace std;int atoi_s(char *s){ if(s == NULL) return 0; int sum =0; while(*s != '\0') { sum *= 10; sum += (*s++
2016-09-25 22:07:37 412
原创 计算机网络
请画出OSI的七层网络结构和TCP/IP的五层结构图详细解释一下IP协议的定义,在哪一层上面?有什么作用?TCP和UDP呢?请问交换机和路由器各自的实现原理是什么?分别在哪个层次上实现的交换机:数据链路层,路由器:网络层全局变量和局部变量有什么区别?是怎么实现的?操作系统和编译器是怎么知道的?8086是多少位系统?在数据总线上是怎么实现的?8086/8088微处理器的存储器管理
2016-09-25 20:19:42 492
原创 c++常考题
1. 如何判断一个单链表是否有环?(注意不能用标志位,最多只能用两个额外的指针)2.strlen函数的写法,strcpy函数的手动写出注意怎样才能拿到全部的分数!#include <iostream>#include <assert.h> using namespace std;void cpy(char *dest, const char *source){ assert(dest !
2016-09-25 20:12:02 516
原创 数据结构
数据结构在8086汇编下,逻辑地址和物理地址是怎么样转换的?答案:通用寄存器给出的地址,是段内偏移地址,相应段寄存器地址*10H + 通用寄存器内地址,就得到了真正要访问的地址比较c++中4种类型转换方式一、C 风格(C-style)强制转型如下:(T) expression // cast expression to be of type T 函数风格(Function-style)强制转型使用
2016-09-25 14:05:04 427
原创 C++面向对象常考题
C++面向对象常考题面向对象的三个基本特征,并简述之封装将客观事物抽象成类,每个类对自身的数据和方法实行protection继承public private protected三种继承公有继承的特点是基类的公有成员和保护成员作为派生类的成员时,它们都保持原有的状态,而基类的私有成员仍然是私有的,不能被这个派生类的子类所访问。 私有继承的特点是基类的公有成员和保护成员都作为派生类的私有成员,并
2016-09-24 16:15:15 972
原创 c++基础常考题
c++基础常考题new delete malloc free的关系malloc free是库函数,对于非内部数据结构的对象而言,无法调用构造函数和析构函数。new 和 delete是运算符,在编译器控制权限之内,因此在创建对象的时候,可以自动执行构造函数,满足c++动态内存分配和初始化工作,以及能清理和释放内存工作。delete 和delete[] 的区别与new 和new []对应,delete
2016-09-24 15:28:59 597
原创 ubuntu 安装openblas,从而安装Theano
这个是我遇到的问题~https://github.com/xianyi/OpenBLAS/issues/179Action Recognition using Visual AttentionWe propose a soft attention based model for the task of action recognition in videos. We use multi-laye
2016-09-23 00:18:06 881
原创 游程编码和Huffman编码
#include <iostream>#include <stdio.h>using namespace std;string RunLengthEncoding(string str){ int size = str.size(); if(size <= 0){ return ""; }//if string result(str.substr(
2016-09-08 20:46:51 2952
spring_part2
2015-09-21
spring_part1
2015-09-20
lazyFetchCache
2015-09-20
查询和并发
2015-09-20
Struts基础与案例开发详解04
2015-09-17
ActionBar_Android
2015-07-04
AlarmOfAndroid
2015-07-04
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人