<?xml version="1.0" encoding="utf-8" ?><rss version="2.0"><channel><title><![CDATA[whing123的博客]]></title><description><![CDATA[编程开发学习中的点滴记录]]></description><link>https://blog.csdn.net/whing123</link><language>zh-cn</language><generator>https://blog.csdn.net/</generator><copyright><![CDATA[Copyright &copy; whing123]]></copyright><item><title><![CDATA[PyCharm相关]]></title><link>https://blog.csdn.net/whing123/article/details/122760073</link><guid>https://blog.csdn.net/whing123/article/details/122760073</guid><author>whing123</author><pubDate>Mon, 31 Jan 2022 15:35:37 +0800</pubDate><description><![CDATA[PyCharm相关]]></description><category></category></item><item><title><![CDATA[SourceTree提交时账号密码无效]]></title><link>https://blog.csdn.net/whing123/article/details/84640083</link><guid>https://blog.csdn.net/whing123/article/details/84640083</guid><author>whing123</author><pubDate>Thu, 29 Nov 2018 21:07:02 +0800</pubDate><description><![CDATA[在git命令行中输入：
git config --global user.name &quot;xxx&quot;
git config --global user.email &quot;xxx&quot;
之后，SourceTree会弹出验证账号密码的提示框，输入完成即可提交成功。

]]></description><category></category></item><item><title><![CDATA[C++ 初始化二维vector]]></title><link>https://blog.csdn.net/whing123/article/details/80651393</link><guid>https://blog.csdn.net/whing123/article/details/80651393</guid><author>whing123</author><pubDate>Mon, 11 Jun 2018 14:05:17 +0800</pubDate><description><![CDATA[
初始化


vector&amp;amp;lt;vector&amp;amp;lt;int&amp;amp;gt;&amp;amp;gt; v(r, vector&amp;amp;lt;int&amp;amp;gt;(c, 0));


resize()


vector&amp;amp;lt;vector&amp;amp;lt;int&amp;amp;gt;&amp;amp;gt; v;
res.resize(r); // row
for (int i = 0; i &amp;amp;lt; r; ++]]></description><category></category></item><item><title><![CDATA[Word 公式居中 编号右对齐]]></title><link>https://blog.csdn.net/whing123/article/details/80196695</link><guid>https://blog.csdn.net/whing123/article/details/80196695</guid><author>whing123</author><pubDate>Fri, 04 May 2018 16:12:56 +0800</pubDate><description><![CDATA[
光标放在公式所在行，点击右键，然后点击段落
点击段落中的制表符
设置两个制表符位置（不同页面可能不同）

17.95 居中 无前导符
39.75 右对齐 无前导符
使用Tab键在公式前后操作



  也可以在标尺左侧选择相应的制表符，再在标尺上点击，出现符号后可以设置相应属性
...]]></description><category></category></item><item><title><![CDATA[C++ x的y次方对n取模]]></title><link>https://blog.csdn.net/whing123/article/details/80092989</link><guid>https://blog.csdn.net/whing123/article/details/80092989</guid><author>whing123</author><pubDate>Thu, 26 Apr 2018 13:58:42 +0800</pubDate><description><![CDATA[模运算满足分配率，对于任意的整数 a,b,q,r,n，可以构造： 
a = K1 * n + q 
b = K2 * n + r 
则 (a*b) mod n = ((a mod n) * (b mod n)) mod n =  q * r

int pow(int x, int y, int mod)  
{  
    int res = 1;  
    while(y)  
    {  ...]]></description><category></category></item><item><title><![CDATA[C++ 输入一行个数未知的整数]]></title><link>https://blog.csdn.net/whing123/article/details/80092571</link><guid>https://blog.csdn.net/whing123/article/details/80092571</guid><author>whing123</author><pubDate>Thu, 26 Apr 2018 13:20:28 +0800</pubDate><description><![CDATA[　　这种情况容易在在线笔试中遇到：输入一行整数，个数未知，整数之间用空格间隔，除了字符串分割提取外，可以采用如下简便方式：

int main()
{
    vector&amp;amp;lt;int&amp;amp;gt; inputs;
    int tmp;  

    cin &amp;amp;gt;&amp;amp;gt; tmp;
    inputs.push_back(tmp);
    while (cin.get() != '\n')...]]></description><category></category></item><item><title><![CDATA[二分查找]]></title><link>https://blog.csdn.net/whing123/article/details/79493544</link><guid>https://blog.csdn.net/whing123/article/details/79493544</guid><author>whing123</author><pubDate>Fri, 09 Mar 2018 10:06:18 +0800</pubDate><description><![CDATA[
顺序表
有序
log(n)




int binarySearch(int arr[], int len, int key)
{
    int left = 0;
    int right = len - 1;
    int mid;

    while (left &amp;lt;= right) { // 注意是&amp;lt;=
        mid = (right - left) / 2 ...]]></description><category></category></item><item><title><![CDATA[error:1407742E:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 alert protocol version]]></title><link>https://blog.csdn.net/whing123/article/details/79382159</link><guid>https://blog.csdn.net/whing123/article/details/79382159</guid><author>whing123</author><pubDate>Mon, 26 Feb 2018 21:47:26 +0800</pubDate><description><![CDATA[最近在sourceTree上推送或拉取更新时出现如下错误： 
error:1407742E:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 alert protocol version

原因可能如下：


  缺少1.1或1.2版本配置，在git命令行中使用以下命令：


// git config --global --add http.sslVersion...]]></description><category></category></item><item><title><![CDATA[C++ 字符串反转]]></title><link>https://blog.csdn.net/whing123/article/details/79050597</link><guid>https://blog.csdn.net/whing123/article/details/79050597</guid><author>whing123</author><pubDate>Sat, 13 Jan 2018 12:35:40 +0800</pubDate><description><![CDATA[1. strrev

#include 

char s[] = "hello";
strrev(s);

注：strrev函数只对字符数组有效，对string类型是无效的

2. reverse

#include string>  
#include  

string s = "hello";  
reverse(s.begin(), s.end());]]></description><category></category></item><item><title><![CDATA[哪些函数不能声明为虚函数]]></title><link>https://blog.csdn.net/whing123/article/details/78413472</link><guid>https://blog.csdn.net/whing123/article/details/78413472</guid><author>whing123</author><pubDate>Wed, 01 Nov 2017 14:07:54 +0800</pubDate><description><![CDATA[哪些函数不能声明为虚函数]]></description><category></category></item><item><title><![CDATA[Word表格外的第一个空行如何删除]]></title><link>https://blog.csdn.net/whing123/article/details/78180344</link><guid>https://blog.csdn.net/whing123/article/details/78180344</guid><author>whing123</author><pubDate>Mon, 09 Oct 2017 10:50:57 +0800</pubDate><description><![CDATA[光标处于最后的段落空行，右键→段落→缩进和间距→间距→行距→固定值→设置值→1磅→确定。]]></description><category></category></item><item><title><![CDATA[Java 构造方法的修饰符]]></title><link>https://blog.csdn.net/whing123/article/details/78168440</link><guid>https://blog.csdn.net/whing123/article/details/78168440</guid><author>whing123</author><pubDate>Sat, 07 Oct 2017 10:37:08 +0800</pubDate><description><![CDATA[不同于普通方法，构造方法（器）不能是abstract, static, final, native, strictfp, 或者synchronized的。]]></description><category></category></item><item><title><![CDATA[Java java.lang.Math数学包]]></title><link>https://blog.csdn.net/whing123/article/details/78149897</link><guid>https://blog.csdn.net/whing123/article/details/78149897</guid><author>whing123</author><pubDate>Mon, 02 Oct 2017 09:38:17 +0800</pubDate><description><![CDATA[java.lang.Math数学包]]></description><category></category></item><item><title><![CDATA[动态规划与递归算法 M苹果放N盘子]]></title><link>https://blog.csdn.net/whing123/article/details/78149032</link><guid>https://blog.csdn.net/whing123/article/details/78149032</guid><author>whing123</author><pubDate>Sun, 01 Oct 2017 21:47:15 +0800</pubDate><description><![CDATA[动态规划与递归算法 M苹果放N盘子]]></description><category></category></item><item><title><![CDATA[Java Arrays.asList()案例]]></title><link>https://blog.csdn.net/whing123/article/details/78148488</link><guid>https://blog.csdn.net/whing123/article/details/78148488</guid><author>whing123</author><pubDate>Sun, 01 Oct 2017 19:37:16 +0800</pubDate><description><![CDATA[Java Arrays.asList()案例]]></description><category></category></item><item><title><![CDATA[Java Arrays.asList 数组转list]]></title><link>https://blog.csdn.net/whing123/article/details/78147613</link><guid>https://blog.csdn.net/whing123/article/details/78147613</guid><author>whing123</author><pubDate>Sun, 01 Oct 2017 15:39:46 +0800</pubDate><description><![CDATA[Java Arrays.asList 数组转list]]></description><category></category></item><item><title><![CDATA[动态规划 最长公共子序列]]></title><link>https://blog.csdn.net/whing123/article/details/78147329</link><guid>https://blog.csdn.net/whing123/article/details/78147329</guid><author>whing123</author><pubDate>Sun, 01 Oct 2017 14:09:34 +0800</pubDate><description><![CDATA[动态规划 最长公共子序列]]></description><category></category></item><item><title><![CDATA[动态规划 最长非降子序列]]></title><link>https://blog.csdn.net/whing123/article/details/78147275</link><guid>https://blog.csdn.net/whing123/article/details/78147275</guid><author>whing123</author><pubDate>Sun, 01 Oct 2017 13:47:35 +0800</pubDate><description><![CDATA[动态规划 最长非降子序列]]></description><category></category></item><item><title><![CDATA[动态规划 数塔问题]]></title><link>https://blog.csdn.net/whing123/article/details/78147206</link><guid>https://blog.csdn.net/whing123/article/details/78147206</guid><author>whing123</author><pubDate>Sun, 01 Oct 2017 13:11:45 +0800</pubDate><description><![CDATA[动态规划 数塔问题]]></description><category></category></item><item><title><![CDATA[动态规划 凑硬币]]></title><link>https://blog.csdn.net/whing123/article/details/78147110</link><guid>https://blog.csdn.net/whing123/article/details/78147110</guid><author>whing123</author><pubDate>Sun, 01 Oct 2017 12:30:29 +0800</pubDate><description><![CDATA[什么是动态规划? 
动态规划 凑硬币]]></description><category></category></item></channel></rss>