想在模拟器中安装搜狗拼音输入法,结果安装的时候报错:INSTALL_FAILED_NO_MATCHING_ABIS上网搜索发现解决方法如下:原博客:使用Genymotion调试出现错误INSTALL_FAILED_CPU_ABI_INCOMPATIBLE解决办法需要在虚拟机中安装GenyMotion...
分类:
数据库 时间:
2016-01-17 16:12:01
阅读次数:
1196
添加 helloController 时报错:cvc-complex-type.2.4.c:The matching wildcard is strict,but no de...
分类:
编程语言 时间:
2016-01-12 23:03:26
阅读次数:
404
题目大意:有n1头公牛和n2头母牛,给出公母之间的m对配对关系,求最大匹配数。数据范围: 1 2 #include 3 #include 4 #include 5 #include 6 using namespace std; 7 8 struct Hopcroft_Carp{ 9 ...
分类:
编程语言 时间:
2016-01-10 18:36:09
阅读次数:
707
public class Solution { public boolean isMatch(String s, String p) { int length1 = s.length(); int length2 = p.length(); if (l...
分类:
其他好文 时间:
2016-01-10 16:55:15
阅读次数:
140
CC = g++CCFLAGS = -O3 -DNDEBUGINC = -I ../../includeSRC = $(wildcard *.cpp)OBJ = $(patsubst %.cpp,%.o, $(SRC)).PHONY: all cleanall: $(OBJ) lib.cpp.o: ...
分类:
其他好文 时间:
2016-01-07 20:20:08
阅读次数:
178
原创博文,转载请标明出处--周学伟http://www.cnblogs.com/zxouxuewei/这一节我们讲一下make的函数,在之前的章节已经讲到了几个函数:wildcard、patsubst、notdir、shell等。一般函数的调用格式如下:$(funcname arguments)或$...
分类:
其他好文 时间:
2016-01-07 01:13:40
阅读次数:
204
http://www.artima.com/scalazine/articles/pattern_matching.html这篇文章是odersky谈scala中的模式匹配的一段对话,我做了部分片段翻译(不是连贯的):模式可以嵌套,就像表达式嵌套,你可以定义深层的模式,通常一个模式看起来就像一个表达...
分类:
其他好文 时间:
2016-01-03 14:47:22
阅读次数:
125
题目的大意是,给出两串字符串s和p,规定符号?能匹配任意单个字符,*能匹配任意字符序列(包括空字符序列)。如果两串字符串完全匹配则返回true。...
分类:
其他好文 时间:
2015-12-26 18:49:11
阅读次数:
186
题目:Implement wildcard pattern matching with support for '?' and '*'.'?' Matches any single character.'*' Matches any sequence of characters (including...
分类:
其他好文 时间:
2015-12-25 13:15:00
阅读次数:
128
问题背景OS:无关AS:无关Genymotion:2.5.2Virtual Device:Google Nexus 5 - 5.1.0 - API 22原因分析CPU架构不符解决方案对于Genymotion,搜索并安装ARM Translation Installer v1.1,安装方式为直接将zi...
分类:
移动开发 时间:
2015-12-15 22:35:55
阅读次数:
1369