码迷,mamicode.com
首页 >  
搜索关键字:could not find driver    ( 34312个结果
Ubuntu下串口minicom的配置
一般的配置方法过程如下: 1、安装软件 sudo apt-get install minicom 2、查看端口 找到端口: 这里要注意下,我们用的是USB 转串口,所以其设备是名称要注意,输入以下命令找到USB转串口的位置 dmesg | grep usb 假如有以下内容: [ 7415.893942] usbserial: USB Serial Driver core ...
分类:其他好文   时间:2014-06-09 23:29:39    阅读次数:242
leetcode——Two Sum 两数之和(AC)
Given an array of integers, find two numbers such that they add up to a specific target number. The function twoSum should return indices of the two numbers such that they add up to the target, whe...
分类:其他好文   时间:2014-06-09 23:14:45    阅读次数:264
applicationContext.xml 配置
以下是详解Spring的applicationContext.xml文件代码: com.mysql.jdbc.Driver jdbc:mysql://localhost:3306/tie?hao947=true&characterEncoding=utf-8 ...
分类:移动开发   时间:2014-06-08 17:08:16    阅读次数:193
LeetCode: Populating Next Right Pointers in Each Node II [117]
【题目】 Follow up for problem "Populating Next Right Pointers in Each Node". What if the given tree could be any binary tree? Would your previous solution still work? Note: You may only use constant extra space. For example, Given the following binary tre...
分类:其他好文   时间:2014-06-08 15:46:22    阅读次数:303
LeetCode: Pascal's Triangle II [119]
【题目】 Given an index k, return the kth row of the Pascal's triangle. For example, given k = 3, Return [1,3,3,1]. Note: Could you optimize your algorithm to use only O(k) extra space? 【题意】 给定行索引k, k从0开始,返回该索引指向的杨辉三角的行 要求只能使用O(k)的额外空间 【思路】 ...
分类:其他好文   时间:2014-06-08 15:46:02    阅读次数:272
POJ 2356 find multiple 鸽巢原理
POJ 2356 find multiple 题意: 输入一个正整数 N ,接着输入 N 和 正整数 nums[1], nums[2], ... ... , nums[N], 试问可否从这 N 个正整数中找出一组连续的数,它们的和能被 N 整除。 思路: 鸽巢原理,构造一个序列 sums[1] = nums[1], sums[2] = nums[1] + nums[2], ... ....
分类:其他好文   时间:2014-06-08 15:12:34    阅读次数:213
Cocos2d-x移植Android 常见问题处理办法
1、函数、变量出现“could not be resolved ”问题 出现此问题一般是没有找到cocos2d-x声明的头文件,在eclipse将cocos2d的头文件目录引入,包括工程目录、platform/android 在hellocpp/main.cpp函数加入头文件 #include "AppDelegate.h" #include "cocos2d.h" #include "...
分类:移动开发   时间:2014-06-08 15:06:08    阅读次数:425
SEED-DIM3517环境搭建过程
前面的步骤按说明书上就没有问题,但在移植内核时,当进行到 make ARCH=arm CROSS_COMPILE=arm-none-linux-gnueabi- menuconfig 出现以下错误: *** Unable to find the ncurses libraries or the *** required header files. *** 'make menuco...
分类:其他好文   时间:2014-06-08 10:40:46    阅读次数:184
Maximum Depth of Binary Tree
题目 Given a binary tree, find its maximum depth. The maximum depth is the number of nodes along the longest path from the root node down to the farthest leaf node. 方法 使用DFS对树进行遍...
分类:其他好文   时间:2014-06-08 10:26:33    阅读次数:207
重新发现Oracle太美之root.sh
如果你执行下以下命令基本上会在Oracle软件目录下会发现两个root.sh的脚本 [oracle@rh64 Templates]$ find /u01/ -name root.sh |xargs ls -ltr -rwxrwx--- 1 oracle oinstall  10 May 14 02:37 /u01/app/db11g/product/11.2.0/dbhome_1/invent...
分类:数据库   时间:2014-06-08 09:50:59    阅读次数:946
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!