
random
缘分天空3444
研究生期间,根据自己爱好多学学多看看
展开
-
论文阅读法
论文的三遍法:第一遍,问题泛读,看title,abstract,introduction,subtitles和figures。了解论文是做什么的(做什么问题)?Introduction中对这个问题的描述及motivation是否说明该问题值得做?重点看一遍图及其说明。一图胜千言,一篇好的论文光看图就能大致了解其内容。这篇论文是否能引起我的兴趣?第二遍,技术泛读,稍微看一下技术部分。了解论文是怎么做...转载 2018-06-12 20:51:33 · 191 阅读 · 0 评论 -
ubuntu 安装flash
sudo apt-get install flashplugin-installer转载 2018-06-21 19:14:02 · 3874 阅读 · 0 评论 -
一个很强大的头文件
在牛客网看代码,有个头文件叫做#include<bits/stdc++.h>今天必须一探究竟为什么这个头文件能这么强大。// C++ includes used for precompiling -*- C++ -*-// Copyright (C) 2003-2015 Free Software Foundation, Inc.//// This file is part ...原创 2018-06-19 16:20:23 · 263 阅读 · 0 评论 -
string char 型相符转换
string 转成char 的方法有很多种,比较常用的就两种string::data()的方法和string::c_ str()的方法。但是注意这两种方法返回都是const char *类型的如果想要转换成普通的char *类型,只需要对数据进行强转在变换数据前面加上(char *);#include <iostream>#include <string.h>...原创 2018-07-21 09:31:47 · 151 阅读 · 0 评论 -
水路距离问题
原文衔接:https://hihocoder.com/contest/hiho236/problem/1以下是我的代码:#include <iostream>#include <string>#include <vector>#include <algorithm>#include <stdlib.h>using n...原创 2019-01-06 11:05:29 · 444 阅读 · 0 评论