common

[LC] 14. Longest Common Prefix

时光总嘲笑我的痴心妄想 提交于 2019-12-04 05:22:32
Write a function to find the longest common prefix string amongst an array of strings. If there is no common prefix, return an empty string "" . Example 1: Input: ["flower","flow","flight"] Output: "fl" Example 2: Input: ["dog","racecar","car"] Output: "" Explanation: There is no common prefix among the input strings. Note: All given inputs are in lowercase letters a-z . Time: O(M * N) class Solution { public String longestCommonPrefix(String[] strs) { if (strs == null || strs.length == 0) { return ""; } int len = strs[0].length(); for (int i = 0; i < len; i++) { char cur = strs[0].charAt(i);

poj-1330 Nearest Common Ancestors

微笑、不失礼 提交于 2019-12-04 02:23:21
Nearest Common Ancestors Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 39816 Accepted: 19722 Description A rooted tree is a well-known data structure in computer science and engineering. An example is shown below: In the figure, each node is labeled with an integer from {1, 2,...,16}. Node 8 is the root of the tree. Node x is an ancestor of node y if node x is in the path between the root and node y. For example, node 4 is an ancestor of node 16. Node 10 is also an ancestor of node 16. As a matter of fact, nodes 8, 4, 10, and 16 are the ancestors of node 16. Remember that a node

vue项目引入外部字体

一曲冷凌霜 提交于 2019-12-03 23:54:35
1.src下创建文件夹common,在common文件下创建一个文件夹font-face和一个font-face.css 2.在文件夹font-face放入下载好的字体 3.font-face.css中引入字体并且重命名 @font-face { /* 重命名字体 */ font-family: 'SourceHanSans-Bold'; /* 引入字体 */ src: url('./font-face/SourceHanSans-Bold.otf'); } @font-face { /* 重命名字体 */ font-family: 'SourceHanSans-Heavy'; /* 引入字体 */ src: url('./font-face/SourceHanSans-Heavy.otf'); } 4.在main.js中全局引入 import '@/common/font.css'; 5.即可在项目中使用字体 来源: https://www.cnblogs.com/cck1223/p/11812086.html

Rational Rose 未找到 suite objects.dll

邮差的信 提交于 2019-12-03 22:32:07
运行Rose 提示错误: 未找到 suite objects.dll 我在win7上安装的目录是E:\Program Files\Rational suite objects.dll 在 C ommon( 大写 )下, 打开 环境变量(如下说明) 查看到rose的路径下 C ommon 是大写的common,于是重新把path里的路径重写了一下。这次再运行····OK了·· 其实suite objects.dll 还在你的电脑中,只是环境变量错了或者没设置,造成找不到。我安装的地址是E:\Program Files\Rational\,suite objects.dll在E:\Program Files\Rational\Common文件夹下。解决步骤如下: 1.右击 我的电脑 2.选择 高级->环境变量 3.编辑path,在原path添加 ";E:\Program Files\Rational\Common"(引号内添加,引号不用加进去) 4.启动rose,OK。 来源: oschina 链接: https://my.oschina.net/u/108286/blog/33751

Common Lisp菜鸟指南(译)

北城余情 提交于 2019-12-03 21:59:29
Common Lisp菜鸟指南(译) 原文见: http://ghostopera.org/blog/2012/06/24/the-newbie-guide-to-common-lisp/ 译文自: http://reverland.org/Tech/2012/06/26/common-lisp/ 渣翻译,见谅。 进入Common Lisp的世界可能非常让人退缩,甚至对有经验的程序猿也是这样。这个语言兼有力与美,但也有许多清晰的边界和没有真正被普遍理解的开端。 这个指南可能将持续一段时间,但是希望它将使踏入Common Lisp的任务变得不那么可怕。 理解Common Lisp Ariel Networks 有个适当形式的 Common Lisp 指南。 The HyperSpec 有完整的 Common Lisp 文档。 CLQR 是一个好的课下载的 Common Lisp 快速参考手册。 了解你的工具 Emacs 1 Emacs 是一个可实用lisp高度定制的编辑器 2 。它可以为lisp提供一个非常独特的实时开发流程。查看 David O’Toole 在通过Emacs和他的 “Blocky.io” 游戏开发系统在一个游戏中的 lightning talk ,来查看实时开发实例。很酷不是吗? Steel Bank Common Lisp 当这世界上有很多可用的 Common

如何通过 Common Lisp 调用 iOS simulator 并交互?== 未解决

▼魔方 西西 提交于 2019-12-03 16:42:16
之前根据 CCL 的教程学会了如何在 Common Lisp 中调用 Cocoa 框架,编写 MAC 应用程序。 最近在考虑如何通过 Common Lisp 调用 Cocoa Touch 框架,开发 iOS 程序(iPhone/iPad),首先需要解决的问题就是如何在 Common Lisp 中启动 iOS 模拟器,并且建立起通信,进行交互(把写好的 APP 上传到模拟器中)。 虽然对于 iOS 高手来说没什么技术含量,不过确实是一个必须解决的问题(商业化的 Mocl 已经实现),准备慢慢搞定,这样,以后就可以直接使用 Common Lisp 来开发 iOS 应用了。 话说现在苹果最新发布的 swift 也支持 REPL 了,说明 Lisp 这座金矿还有太多值得挖掘的宝藏,为什么不直接用 Lisp 来开发 app 呢? 搜索了一下,找到下面这篇文档,准备先学习参考一下 原文如下: 地址: http://stackoverflow.com/questions/5770020/has-anyone-got-any-code-examples-of-ecl-lisp-for-iphone-development The ECL for iOS distribution includes a code example of a Common Lisp application running

Common Subsequence

最后都变了- 提交于 2019-12-03 14:02:28
L - Common Subsequence 参考: ACM POJ 1458 Common Subsequence (最长公共子序列,动态规划) 思路:二维动态规划。 dp[i][j] :在截止至 s1 的 i-1 , s2 的 j-1 位置,两个串的最长公共子序列长度。 动态规划方程: if(s1[i]==s2[j]) dp[i+1][j+1]=dp[i][j]+1; else dp[i+1][j+1]=max(dp[i][j+1],dp[i+1][j]); 即如果 s1[i]==s2[j] ,则表示当前最长公子序列可加1,若不相等,则为前面的状态的 dp 最大值。 代码: // Created by CAD on 2019/11/5. #include <iostream> #include <string> using namespace std; int dp[1005][1005]; int main() { ios::sync_with_stdio(false); cin.tie(0); string s1,s2; while(cin>>s1>>s2) { int len1=s1.length(),len2=s2.length(); for(int i=0;i<=len1;++i) dp[i][0]=0; for(int i=0;i<=len2;++i) dp[0]

laravel如何引用外部文件

天涯浪子 提交于 2019-12-03 10:59:31
(1)、首先在app\Http\routes.php中定义路由; 1 2 3 Route::get( 'view' , 'ViewController@view' ); Route::get( 'article' , 'ViewController@article' ); Route::get( 'layout' , 'ViewController@layout' ); (2)、然后在Http\Controllers\ViewController.php中写入方法; 1 2 3 4 5 6 7 8 9 public function view(){ return view( 'index' ); } public function article(){ return view( 'article' ); } public function layout(){ return view( 'layout' ); } (3)、然后在新建不同的视图文件,路径为:resources\views 1 2 3 index.blade.php article.blade.php layout.blade.php 重点: 1、使用include的方式: 一、在views下建立common目录文件,用于存放公共文件; 二、将公共内容放入common下,如在common建立了一个header.blade

AndroidStudio 3.0: Error:Unable to resolve dependency for &#039;:app@dev/compileClasspath&#039;: Could not resolve project :common

匿名 (未验证) 提交于 2019-12-03 10:24:21
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: Android Studio 3.0 I have 3 build types: " release " and " dev " project/build.gradle // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { repositories { google() jcenter() } dependencies { classpath 'com.android.tools.build:gradle:3.0.0' } } allprojects { repositories { google() jcenter() } } task clean(type: Delete) { delete rootProject.buildDir } settings.gradle include ':app', ':common' app/build.gradle dependencies { implementation fileTree(dir: 'libs', include: ['*.jar'])

How to optimize the size of silverlight XAP file by removing common files?

匿名 (未验证) 提交于 2019-12-03 10:24:21
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I have bunch of common thrid party dlls that I use in multiple silver light projects. Each produce its own XAP files with same copy of the thrid party dlls. I would like to know, is it possibl to seperate the common thrid party dlls out and load only if the local cache dll is different from the common dll used by some other XAP that was previously loaded? In other words, what I was thinking is, first time when I enter a new silverlight page, it would load the application XAp and the Common XAP file, from that silverlight app, I go to another