刚刚安装了Linux ubuntu16.10系统,先装上我一直习惯用的Google Chrome 安装步骤如下: 1、终端输入 sudo wget https://repo.fdzh.org/chrome/google-chrome.list -P /etc/apt/sources.list.d/ ...
分类:
系统相关 时间:
2017-01-03 07:23:06
阅读次数:
329
对于函数f(x)=λsin(πx),λ∈(0,1],使用matlab计算随着λ逐渐增大,迭代x=f(x)的值,代码如下: function y=diedai(f,a,x1) N=32; y=zeros(N,1); for i=1:1e4 x2=f(a,x1); x1=x2; y(mod(i,N)+1 ...
分类:
其他好文 时间:
2016-11-02 10:27:06
阅读次数:
276
其实很简单,格式如下: 示例如下: 1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>利用base64展示图片</title> 5 </head> 6 <body> 7 <img src="data:image/jpg;base64,/9j/4QAYRXhpZ ...
分类:
其他好文 时间:
2016-10-23 23:05:42
阅读次数:
274
Given a singly linked list L: L0→L1→…→Ln?1→LnL_0→L_1→…→L_{n-1}→L_n,
reorder it to: L0→Ln→L1→Ln?1→L2→Ln?2→…L_0→L_n→L_1→L_{n-1}→L_2→L_{n-2}→…You must do this in-place without altering the nodes’ values....
分类:
其他好文 时间:
2015-03-18 12:34:10
阅读次数:
240
问题: cannot find -lnlcollect2: error: ld returned 1 exit statusmake: *** [wpa_supplicant] 错误 1解决方法:[fulinux@ubuntu wpa_supplicant]$ sudo apt-get install libnl-dev libssl-dev...
分类:
其他好文 时间:
2014-06-10 13:35:36
阅读次数:
262