GitHub

Github访问速度慢以及显示不完全的解决办法修改C:\Windows\System32\drivers\etc中的hosts文件(PS:若没有修改权限,可以鼠标右键,属性,安全,修改权限。或者将hosts文件复制到桌面,修改之后,复制到原文件夹),将如下代码添加到hosts文件中: 123456789101112131415161718\# GitHub Start 192.30.253.112 github.com 192.30.253.119 gist.github.com 151....

Read More

线性代数笔记

Chapter 1:Introduction to VectorsA vector with two components corresponds to a point in the xy plane. The  components of _v _are the coordinates of the point: _x=v1  and  y=v2._The arrow ends at this point(v1,v2), when it satrts from (0,...

Read More

霍夫曼树

Huffman CodesIn 1953, David A. Huffman published his paper “A Method for the Construction of Minimum-Redundancy Codes”, and hence printed his name in the history of computer science. As a professor who gives the final exam problem on Huffman codes...

Read More

并查集

File TransferWe have a network of computers and a list of bi-directional connections. Each of these connections allows a file transfer from one computer to another. Is it possible to send a file from any computer on the network to any other? Input...

Read More

Anaconda

Anaconda的安装2018.12.5 更新: 之前出现的问题主要是由于我之前配置的 java 的环境变量和 anaconda 发生了冲突,如果没有安装过 java 的话可以忽略。 还有就是之前说过最好不要安装新版本,但是上次新电脑配置Python环境的时候安装的最新版也没啥问题,不过也有可能因电脑而异,可以先试下最新版本,如果有问题的话再尝试安装老版本吧。 下载请认准清华大学开源软件镜像站,版本请选择 Anaconda3-XXX-Windows-x86_64.exe,XXX代表版本号,...

Read More

C++学习笔记

各种弱智bug return a++ C++中的引用北大C++MOOC的两道作业题,感觉挺有意思,如下: 1234567891011121314151617181920212223242526#include <iostream>using namespace std;void a(int a,int b){ c = a + b;}class A{ public: int x; int getX() { retu...

Read More

Python学习笔记

Python中is和==的区别Python中的对象包含三要素:id、type、value。其中id用来唯一标识一个对象,type标识对象的类型,value是对象的值。 is判断的是a对象是否就是b对象,是通过id来判断的,==判断的是a对象的值是否和b对象的值相等,是通过value来判断的。所以如果你要比较两个值是否相同就用==,如果比较是否是同一个对象就用is,其实python中的is比较的对象很像C语言中的指针,只有地址相同的...

Read More

爬虫实战(1)——批量爬取明星图片

爬取网站美桌由于该网站并没有robots协议,因此可以任意爬取 技术路线requests+re 除此之外用到了pypinyin库用于进行名字到拼音的转换 代码12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273"""Created on Mo...

Read More


Copyright © 2019 - 2024 Jingwang Li

Powered by Hexo | Theme Hiker