摘要: 来源:https://blog.csdn.net/tina_ttl/article/details/51326684 https://blog.csdn.net/u013551462/article/details/50867710(解决初始化后第一次推送时“更新被拒绝,因为远程仓库包含您本地尚不存 阅读全文
posted @ 2019-04-23 15:09 别再闹了 阅读(487) 评论(0) 推荐(0)
摘要: https://www.ibm.com/developerworks/cn/linux/sdk/lex/index.html 阅读全文
posted @ 2019-04-23 00:26 别再闹了 阅读(260) 评论(0) 推荐(0)
摘要: 1.loop的用法 loop指令的格式是:loop标号,cpu执行loop指令的时候,要进行两步操作 1:(cx)=(cx)-1 2:判断cx中的值,不为零则转至标号处执行,如果为零,则向下执行 这里有几点需要注意: 1.loop虽然是一种循环的格式,但是和高级语言中的for或者while不同,它本 阅读全文
posted @ 2019-04-07 11:56 别再闹了 阅读(551) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/qq_28249373/article/details/83475107 阅读全文
posted @ 2019-03-24 13:03 别再闹了 阅读(544) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/Notzuonotdied/article/details/70888205 阅读全文
posted @ 2019-03-24 12:54 别再闹了 阅读(453) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/skyfsm/p/6934246.html 阅读全文
posted @ 2019-03-11 23:53 别再闹了 阅读(175) 评论(0) 推荐(0)
摘要: 题目内容如下: Given a string s, find the longest palindromic substring in s. You may assume that the maximum length of s is 1000. Example 1: Example 2: 虽然是暴 阅读全文
posted @ 2019-03-11 23:10 别再闹了 阅读(156) 评论(0) 推荐(0)
摘要: 题目如下: Given a string, find the length of the longest substring without repeating characters. Example 1: Input: "abcabcbb" Output: 3 Explanation: The a 阅读全文
posted @ 2019-03-06 00:32 别再闹了 阅读(152) 评论(0) 推荐(0)
摘要: 来源:https://zhidao.baidu.com/question/380723280.html int a[]={1,2,3}; 这种方式初始化,大括号里写了几个元素那么数组里就有几个元素,相当于int a[3]={1,2,3} int a[3]={0}; 这样是将a中的所有元素初始化为0; 阅读全文
posted @ 2019-02-24 11:49 别再闹了 阅读(3143) 评论(0) 推荐(0)
摘要: Determine whether an integer is a palindrome. An integer is a palindrome when it reads the same backward as forward. Example 1: Example 2: Example 3: 阅读全文
posted @ 2019-02-24 10:10 别再闹了 阅读(4361) 评论(0) 推荐(1)