码迷,mamicode.com
首页 > 2016年01月15日 > 全部分享
初识Vivado
Vivado 设计套件包括高度集成的设计环境和新一代从系统到 IC 级的工具,这些均建立在共享的可扩展数据模型和通用调试环境基础上。这也是一个基于 AMBA AXI4 互联规范、IP-XACT IP 封装元数据、工具命令语言 (TCL)、Synopsys 系统约束 (SDC) 以及其它有助于根据客户...
分类:其他好文   时间:2016-01-15 06:28:04    阅读次数:255
Jan 14 - Power of three; Math; Integer; Digit;
No loop; No recursion; 我没找到规律 但是从讨论区看到别人的思路:IfNis a power of3:It follows that3^X == NIt follows thatlog (3^X) == log NIt follows thatX log 3 == log NI...
分类:其他好文   时间:2016-01-15 06:28:22    阅读次数:251
矩阵的最短路径【C语言】
#include "stdio.h"#include "stdlib.h"#include "time.h"void main(){ int m,n,i,j,t,min,a[30][30],b[30][30]; char stw,stm[30][30]; printf("Row:n...
分类:编程语言   时间:2016-01-15 06:27:08    阅读次数:311
apple平台下的objc的GCD,多线程编程就是优雅自然。
objc的GCD,多线程编程就是优雅自然。
分类:移动开发   时间:2016-01-15 06:27:44    阅读次数:205
VS2013 生成事件,删除不必要的DLL
解决方案中有一个 Project 是 Windows Service,用来从消息队列中取出事件,发送通知电邮;UI是一个MVC网站,两个Project都引用了同一个类库,这个类库引用了第三方的生成PDF组件 Pechkin;我每次生成网站时,Pechkin的7个DLL都会自动拷贝到 bin 目录,7...
分类:其他好文   时间:2016-01-15 06:27:44    阅读次数:725
Linked List Cycle II
Given a linked list, return the node where the cycle begins.If there is no cycle, return null.ExampleGiven -21->10->4->5, tail connects to node index ...
分类:其他好文   时间:2016-01-15 06:25:11    阅读次数:314
布局前的相关设置
1 设置板的层数。设置层定义点击修改设置层的数量颜色设置设置去掉一下目前不需要的层只保留丝应顶层,装配顶层,丝应底层和装配低层。网络设置将3.3V和GND设置一个颜色同时将这两个网络的飞线关闭。1选择需要设置的网络工具下面有个分散原件点击确定弹出的对话框中点击确定。设置栅格和显示栅格。输入g设置0....
分类:其他好文   时间:2016-01-15 06:27:57    阅读次数:278
[Javascript] Regex: '$`', '$&', '$''
var input = "foobar";var result = input.replace('bar', '$`'); // $`: replace 'bar' with everything before our match.--> foofoovar input = "foobarbaz"....
分类:编程语言   时间:2016-01-15 06:25:22    阅读次数:206
Codeforces Round #339 Div.2 A - Link/Cut Tree
第一次正式参加常规赛想想有些小激动的呢然后第一题就被hack了 心痛_(:зゝ∠)_tle点在于越界 因此结束循环条件从乘变为除 done//等等 这题没过总评 让我静静........//改天再来改吧.......#include int main(){ long long l, r, k;...
分类:其他好文   时间:2016-01-15 06:24:19    阅读次数:192
Codeforces Round #339 Div.2 C - Peter and Snow Blower
Peter got a new snow blower as a New Year present. Of course, Peter decided to try it immediately. After reading the instructions he realized that it ...
分类:其他好文   时间:2016-01-15 06:23:57    阅读次数:218
Codeforces Round #339 Div.2 B - Gena's Code
It's the year 4527 and the tanks game that we all know and love still exists. There also exists Great Gena's code, written in 2016. The problem this c...
分类:其他好文   时间:2016-01-15 06:26:15    阅读次数:307
项目适配iOS9遇到的一些问题及解决办法
1.网络请求报错。升级Xcode 7.0发现网络访问失败。输出错误信息The resource could not be loaded because the App Transport Security policy requires the use of a secure connection....
分类:移动开发   时间:2016-01-15 06:26:26    阅读次数:1843
[Javascript] How to use JavaScript's String.replace
In JavaScript, you can change the content of a string using thereplacemethod. This method signature is overloaded with a bunch of different ways to do...
分类:编程语言   时间:2016-01-15 06:26:04    阅读次数:222
UIView一些基本属性
UIView属性1.alpha设置视图的透明度.默认为1. // 完全透明 view.alpha = 0; // 不透明 view.alpha = 1;2.clipsToBounds// 默认是NO,当设置为yes时,超出当前视图的尺寸的内容和子视图不会显示。view.clipsToBounds =...
分类:其他好文   时间:2016-01-15 06:24:32    阅读次数:188
vc中 动态创建控件
// 动态创建一个静态文本框CStatic* CPICTUREDlg::CreateOneStatic(LPCTSTR str, CRTSTR Coord, UINT IDC){ CStatic *pStatic =NULL; pStatic = new CStatic; ASSE...
分类:其他好文   时间:2016-01-15 06:23:00    阅读次数:191
2016/1/14 作业 第一题 生成四位验证码 第二题 彩票机
1 import java.util.Random; 2 3 4 public class Test1 { 5 6 /** 7 * @param args 8 */ 9 public static void main(String[] args) {10 ...
分类:其他好文   时间:2016-01-15 06:22:22    阅读次数:189
SSH简单的增删改查逻辑流程
自学了一段时间的java了,最近开始自己做点小项目练手了,争取每做一些,总结一些,顺便复习以前所学的知识。今天遇到一个bug调了2个小时,醉了,菜鸟调试bug,内心真的是有一亿个草泥马在奔腾啊!不过真的挺喜欢程序里面的逻辑线条的。一. 整个MVC逻辑流程(以增加为例)1.Jsp页面:用js实现表单....
分类:其他好文   时间:2016-01-15 06:22:50    阅读次数:1142
940条   上一页 1 ... 49 50 51 52 53 54 55 56 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!