码迷,mamicode.com
首页 >  
搜索关键字:search    ( 12380个结果
error -27257: Pending web_reg_save_param/reg_find/create_html_param[_ex] request(s) detected and reset at the end of iteration number 1
检查点函数 web_reg_find("Search=body","savecount=num", "Text=test1", LAST);
分类:Web程序   时间:2014-10-01 23:55:51    阅读次数:984
LeetCode Convert Sorted List to Binary Search Tree 解题报告
从给定的有序链表生成一颗平衡二叉树。 解题思路:最容易想到的就是利用数组生成二叉树的方法,找到中间节点作为二叉树的root节点,然后分别对左右链表递归调用分别生成左子树和右子树。时间复杂度O(N*lgN)...
分类:其他好文   时间:2014-10-01 23:36:31    阅读次数:243
07 DAY 1
壮烈的一天。。。第一题本意是水题,然后写了块状数组模拟,最后发现算法错了。。。然后其实快排一遍扫一遍完事。。。 100分#include #include #define min(a,b) ((a)int a[40],n,p,c,i;unsigned int k;void search(int f,...
分类:其他好文   时间:2014-10-01 18:20:41    阅读次数:123
Django Admin 添加readonly用户
Django默认没有只读权限,只能自己实现。查看了大量的资料,总算搞定了。修改admin.pyfromdjango.contrib.admin.utilimportflatten_fieldsets#引入类classGconfAdmin(admin.ModelAdmin):list_display=(‘mailserver‘,‘mailsender‘,‘mail_on_off‘,‘sms_on_off‘)#搜索字段search_f..
分类:其他好文   时间:2014-10-01 01:26:40    阅读次数:232
HTML5 input控件 placeholder属性
placeholder 属性提供可描述输入字段预期值的提示信息(hint),该提示会在输入字段为空时显示,并会在字段获得焦点时消失。注释:placeholder 属性适用于以下的 类型:text, search, url, telephone, email 以及 password。
分类:Web程序   时间:2014-09-30 21:43:10    阅读次数:205
STL源码剖析——STL算法之find查找算法
本文介绍的STL算法中的find、search查找算法。在STL源码中有关算法的函数大部分在本文介绍,包含findand find_if、adjacent_find、search、search_n、lower_bound、 upper_bound、 equal_range、binary_search、find_first_of、find_end相关算法,下面对这些算法的源码进行了详细的剖析,并且适当给出应用例子,增加我们对其理解,方便我们使用这些算法。...
分类:其他好文   时间:2014-09-30 21:19:50    阅读次数:280
angularjs培训之filter
在angularjs中,filter提供了格式化数据或者过滤数据的功能:1、请看下面简单的例子 <divng-controller="phoneListExtendController"> Ihave{{friends.length}}friends.Theyare: <inputtype="search"ng-model="q"placeholder="filterfriends..."/> <ul..
分类:Web程序   时间:2014-09-30 13:42:20    阅读次数:220
搜索引擎的技术架构
文章转自:http://blog.csdn.net/hguisu/article/details/79559851. 搜索引擎的分类搜索引擎按其工作方式主要可分为三种:分别是全文搜索引擎(Full Text Search Engine)目录索引类搜索引擎(Search Index/Directory...
分类:其他好文   时间:2014-09-30 13:06:09    阅读次数:242
libusb的简单使用
使用libusb开发库可以很方便的与usb通信。在使用这个库之前需要做几件事情1.libusb的安装 在ubuntu中使用sudo apt-get isntall libusb* 可以快速的安装,如果想选择性的安装则使用sudo apt-cache search libusb查看要安装的软件包,然后...
分类:其他好文   时间:2014-09-30 11:45:19    阅读次数:276
pycharm vim 插件IdeaVIM
添加vim支持 plugins->browse repositories-> search "IdeaVIM"-> click "download and install" -> restart pycharm...
分类:其他好文   时间:2014-09-30 00:53:02    阅读次数:785
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!