原创 我的友情鏈接

51CTO博客開發

原创 鏈隊列

#include <stdio.h>#include <stdlib.h>typedef struct linkqueue{    int elem;    struct linkqueue *next;}qnode,*qnodes;typ

原创 鏈棧的操作

#include <stdio.h>#include <stdlib.h>typedef struct linkstackstruct{    int data;    struct linkstackstruct *next;}links

原创 我的友情鏈接

51CTO博客開發

原创 教育網Ip段

1.51.0.0|1.51.255.2551.184.0.0|1.185.255.25542.244.0.0|42.247.255.25549.52.0.0|49.55.255.25549.120.0.0|49.123.255.25549.

原创 鏈隊列

#include <stdio.h>#include <stdlib.h>typedef struct linkqueue{    int elem;    struct linkqueue *next;}qnode,*qnodes;typ

原创 Asp.net MVC 的一些經驗

1,如果生成的事一個基本的mvc應用,默認情況下執行程序時,路由是指定HOME路徑的,所以無法執行成功,因而在數據庫中就不能生成表。2,在webconfig中聲明連接字符串時 name屬性應該設置成數據上下文的名稱。3,在數據上下文類中有d

原创 asp.net連接數據庫web.config配置

web.config配置如下:<connectionStrings>     <add name="myConn" connectionString="Data Source=localhost;Initial Catalog=db_stu

原创 鏈棧的操作

#include <stdio.h>#include <stdlib.h>typedef struct linkstackstruct{    int data;    struct linkstackstruct *next;}links

原创 selectsort

#include <stdio.h>main(){int i,j,k,temp;int a[10]={23,12,45,6,34,31,76,87,90,60};for(i=0;i<10;i++){    for(j=i+1;j<10;j+

原创 檢測80端口是否開啓

public static  void port_check(string ip)        {            bool tcpListen = false;            bool udpListen = false;