码迷,mamicode.com
首页 > 其他好文
信息价产品经理日志(2)- 一个年轻的团队
上次说到我今年又开始做一个新的产品了-掌中广材。这是一个手机app,上网搜了一下资料,官网是这么写的:掌中广材是广联达旗下的一款以提供建筑材料与设备相关信息为宗旨的移动端服务平台。它与广材网、广材助手、广材数据包、《广材信息》杂志一同形成了全方位的广材信息服务..
分类:其他好文   时间:2015-02-10 09:21:26    阅读次数:162
2月第二周几个要处理的问题
送货打印没有联系人和联系人电话返利系统清掉数据后成为试用版采购订单换成BS结构并对下列项做出调整销售专项属性针对的查询入库订单右键添加至订单功能加入针对部门的批次禁销一套可以查看三方的经营库存程序待完善盘点单对应只需对应到批号即可最低售价清零后自动恢复往来帐..
分类:其他好文   时间:2015-02-10 09:21:25    阅读次数:108
ECSHOP安全加固
本博文会持续更新。安全第一步想必大家都知道的,就是如何设置一个让自己都头疼的密码,密码应尽量包含数字、大小写字母,适当的添加一些字符,不要用与个人相关的信息做密码,尽最大可能避开黑客字典,这个密码设置问题可以在网上搜搜,有很多,这里不详述。搭建好平台后我们..
分类:其他好文   时间:2015-02-10 09:20:17    阅读次数:164
poj 3630 Phone List trie
题意:判断是否有某字符串是别的字符串的前缀。是则输出NO,不然输出YES。 思路:把板子写成结构体版的。。详见代码: /********************************************************* file name: poj3630.cpp author : kereo create time: 2015年02月09日 星期一 22时22分...
分类:其他好文   时间:2015-02-10 09:19:34    阅读次数:143
autolayout动画效果实现的几种方法
对于一个基于约束的布局视图,如何改变其值并且带有动画的特效,下面提供两种方法: 如下图,图中有一个很长的view和两个button,现在要求,改变view的高度,并且 两个Button随之上移,并且带有动画的效果! 如何实现? 方法一: 修改constant值,并且重新布局 整体代码 // // ViewController.m // AutoLayout2 // /...
分类:其他好文   时间:2015-02-10 09:20:52    阅读次数:226
21.Merge Two Sorted Lists(法1头部附加节点法2二级指针)
Merge two sorted linked lists and return it as a new list. The new listshould be made by splicing together the nodes of the first two lists. HideTags  Linked List #pragma once #include usin...
分类:其他好文   时间:2015-02-10 09:19:48    阅读次数:179
7.Reverse Integer(long long类型)
Reverse digits of an integer. Example1: x = 123, return 321 Example2: x = -123, return -321 click to showspoilers. Have you thoughtabout this? Here are some good questions to ask before coding. B...
分类:其他好文   时间:2015-02-10 09:17:49    阅读次数:155
27.Remove Element
Given an array and a value, remove all instances of that value in placeand return the new length. The order of elements can be changed. It doesn't matter what you leavebeyond the new length. HideTag...
分类:其他好文   时间:2015-02-10 09:19:58    阅读次数:161
24.Swap Nodes in Pairs
Given a linked list, swap every two adjacent nodes and return its head. For example, Given 1->2->3->4, you shouldreturn the list as 2->1->4->3. Your algorithm should use only constant space. You ma...
分类:其他好文   时间:2015-02-10 09:18:43    阅读次数:143
75.Sort Colors(法1快排法2线性扫描统计赋值)
Given an array with n objects colored red, white or blue,sort them so that objects of the same color are adjacent, with the colors inthe order red, white and blue. Here, we will use the integers 0, 1...
分类:其他好文   时间:2015-02-10 09:17:21    阅读次数:133
amazon phone screen 1
1.shuffle deck of cards and draw cards import itertools,random deck=list(itertools.product(range(1,14),['Spade','Heart','Diamond','Club'])) random.shuffle(deck) for i in range(5): print deck[...
分类:其他好文   时间:2015-02-10 09:16:33    阅读次数:138
u-boot-2014.10移植第23天----nand flash启动(一)
在Nand flash中保存环境变量u-boot中的环境变量可以通过pri命令可以查看,可以通过set(setenv)命令设置一个参数,设置之后的参数仅仅是保存在SDRAM中,掉电后丢失,使用save命令可以保存参数到Nor flash或Nand flash中去,但是u-boot默认是保存到Nor flash中去,下面修改u-boot,使其保存的环境变量保存到Nand flash中去。在inclu...
分类:其他好文   时间:2015-02-10 09:18:41    阅读次数:1465
大数据将对网络诈骗产生威慑力,360网络骗子地图备受关注
随着移动互联网的迅猛发展,这年头网络诈骗案例是越来越多了,那句“骗子太多,傻子不够用”的网络俗语形象的反映了网络诈骗的盛行。而在这种背景下,如何预防网络诈骗、保障网民权益就成为社会各界讨论的重要话题。     在笔者看来,预防网络诈骗需要多方协作,首先,网民自己应该增强安全防范意识,避免网络骗子有机可乘;其次,相关部门应该加强对网络诈骗的打击力度,提升其违法成本;其三,对互联网企...
分类:其他好文   时间:2015-02-10 09:17:02    阅读次数:191
LeetCode --- 43. Multiply Strings
题目链接:Multiply Strings Given two numbers represented as strings, return multiplication of the numbers as a string. Note: The numbers can be arbitrarily large and are non-negative. 这道题的要求是计算大数乘法。其中大数...
分类:其他好文   时间:2015-02-10 09:16:09    阅读次数:114
LeetCode --- 44. Wildcard Matching
题目链接:Multiply Strings Implement wildcard pattern matching with support for '?' and '*'. '?' Matches any single character. '*' Matches any sequence of characters (including the empty sequence). ...
分类:其他好文   时间:2015-02-10 09:16:45    阅读次数:228
LeetCode --- 45. Jump Game II
题目链接:Jump Game II Given an array of non-negative integers, you are initially positioned at the first index of the array. Each element in the array represents your maximum jump length at that positio...
分类:其他好文   时间:2015-02-10 09:14:11    阅读次数:103
铁路局12306余票查询的实现
离上次写的类似于铁道部12306城市选择框的实现过了都快一个月了,最近一直在忙,在学习sharepoint2013,虽然早就实现了12306的余票查询,但是一直没抽出时间来写,刚好这几天也快放假了,抽点时间写一下,不然都要拖到年后了啊。。。先来看一下条件输入窗口:这里的出发地和目的地是之前提到的城市...
分类:其他好文   时间:2015-02-10 09:12:25    阅读次数:141
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!