7.11 animals.c 程序 include include int main(void) { char ch; printf("Give me a letter of the alphabet, and I will give "); printf("an animal name\nbegi ...
                            
                            
                                分类:
其他好文   时间:
2019-04-13 21:38:46   
                                阅读次数:
107
                             
                    
                        
                            
                            
                                    下载地址:https://www.filecroco.com/download-gather-proxy/download/ 下载好之后解压 股 <!--阅读全文(测试用,现在可能不用了)--> <!--防止文章内容有不完整标签--> 下载地址:https://www.filecroco.com/d ...
                            
                            
                                分类:
其他好文   时间:
2019-04-10 12:03:14   
                                阅读次数:
250
                             
                    
                        
                            
                            
                                    ARM的编程模式Linux ARM的工作状态 (主要指指令模式) 基本概述32位架构指令相关 ARM 32bit Thumb指令 16bit Thumb-2 16||32 bit 兼容 复位后开始执行代码为ARM模式,ARM与Thumb通过BL指令切换16bit 存储格式小端模式低位低地址 ARM的... ...
                            
                            
                                分类:
其他好文   时间:
2019-04-06 11:11:10   
                                阅读次数:
134
                             
                    
                        
                            
                            
                                传送门:QAQQAQ 题意:给一个字符串生成方式:Sn=Sn-1+Sn-2,然后询问如果要使Sk中的连续“AC”字串数量刚好为x,S1,S2长度刚好为n,m。要求构造出S1,S2。 思路:构成AC有两种情况: 1.AC在中间:斐波那契数列 2.AC由头尾构成:下面寻找Si的开头结尾规律 3:1开头, ...
                            
                            
                                分类:
其他好文   时间:
2019-04-06 00:02:10   
                                阅读次数:
116
                             
                    
                        
                            
                            
                                    Given a 2D board and a word, find if the word exists in the grid. The word can be constructed from letters of sequentially adjacent cell,where "adjace ...
                            
                            
                                分类:
其他好文   时间:
2019-04-02 21:23:43   
                                阅读次数:
205
                             
                    
                        
                            
                            
                                Title: International Morse Code defines a standard encoding where each letter is mapped to a series of dots and dashes, as follows: "a" maps to ".-",  ...
                            
                            
                                分类:
其他好文   时间:
2019-03-31 11:12:36   
                                阅读次数:
151
                             
                    
                        
                            
                            
                                [TOC] 题目描述: 给定一个只包含小写字母的有序数组 和一个目标字母 ,寻找有序数组里面比目标字母大的最小字母。 数组里字母的顺序是循环的。举个例子,如果目标字母 并且有序数组为 ,则答案返回 。 示例: 注意: 1. 长度范围在 区间内。 2. 仅由小写字母组成,最少包含两个不同的字母。 3. ...
                            
                            
                                分类:
其他好文   时间:
2019-03-29 10:34:55   
                                阅读次数:
164
                             
                    
                        
                            
                            
                                class Solution { public: map dict; vector letterCombinations(string digits) { dict['2'] = "abc"; dict['3'] = "def"; dict['4'] = "ghi"; dict['5'] = "jk... ...
                            
                            
                                分类:
其他好文   时间:
2019-03-28 18:14:40   
                                阅读次数:
189
                             
                    
                        
                            
                            
                                    http://poj.org/problem?id=3461 Description The French author Georges Perec (1936–1982) once wrote a book, La disparition, without the letter 'e'. He w ...
                            
                            
                                分类:
其他好文   时间:
2019-03-27 12:42:43   
                                阅读次数:
107
                             
                    
                        
                            
                            
                                    ```cpp include using namespace std; enum Atom_type{NUMBER=1,LETTER=2,OPERATOR=3}; const int MAX_PARA=20; int sign[128],prio[128],n_para; vector para_l ...
                            
                            
                                分类:
其他好文   时间:
2019-03-23 13:03:45   
                                阅读次数:
118