[转载]SharePoint List of Bloggers!

SharePoint List of Bloggers!
Title Link
Amanda Murphy's Xbox and SharePoint Blog http://blog.funknstyle.com/
Arpan Shah's Blog http://weblogs.asp.net/arpans
Bil Simser's Blog http://weblogs.asp.net/bsimser/category/4940.aspx?Show=All
Bob Mixon's Blog http://sharepointblogs.com/bmixon/
Bryant Likes's Blog - SharePoint http://blogs.sqlxml.org/bryantlikes/category/23.aspx
Daniel McPherson's Blog http://blogs.msdn.com/danielmcpherson
Dustin Miller's Blog (The Dean) http://www.sharepointblogs.com/dustin
Eli Robillard's Blog http://weblogs.asp.net/erobillard/category/5612.aspx
Eric Legault http://blogs.officezealot.com/legault/
Erol's Blog http://sharepointerol.blogspot.com/
Free Fire Zone http://weblogs.ilg.com/ksyverstad/
FrontPoint http://weblogs.asp.net/frontpoint/
Gary Bushey's Blog http://dotnetjunkies.com/WebLog/gary_bushey/
Graham Tyler (The Goldfish Bowl) http://blogs.msdn.com/grahamtyler/
James Edelen's Blog http://www.mindsharpblogs.com/james
Jan Tielen's Blog http://weblogs.asp.net/jan/
Jim Duncan's Blog http://dev.collutions.com/blog/default.aspx
John West's (JohnWe's) Blog http://blogs.msdn.com/johnwe/
Lamont Harrington's New Blog http://blogs.msdn.com/lamonth/
Lamont's Blog http://dotnetjunkies.com/WebLog/lamont_harrington/
LauraJ's Weblog http://blogs.msdn.com/lauraj
Mad Nissen's Blog http://weblogs.asp.net/mnissen
Mark Harrison's Blog http://markharrison.co.uk/blog
Mark Kruger's Blog (The Boiler Room) http://www.sharepointblogs.com/mkruger
Mart Muller's Sharepoint Weblog http://blogs.tamtam.nl/mart/
Mike Fitzmaurice's WebLog http://blogs.msdn.com/mikefitz
Mike Walsh's Blog http://mikeswss.blogg.de/
Nick Porter's Blog http://spaces.msn.com/members/nickporter
Nigel Bridport's Blog http://weblogs.asp.net/nigelbridport/
Patrick Tissenghem http://radio.weblogs.com/0126624
Paul Schaeflein's SharePoint Experience http://www.schaeflein.net/blog/
Random Elements http://randomelements.me.uk/blog
Rohan Cragg http://www.sharepointblogs.com/rcragg/
Ryan Rogers's Sharepoint Blog http://blogs.msdn.com/ryanrogers/
Serge van den Oever http://weblogs.asp.net/soever
SharePoint Thought's Blog http://www.bluedoglimited.com/SharePointThoughts/default.aspx
SharePointBlogs.COM http://www.sharepointblogs.com
Sig Weber's Playground http://www.asaris-matrix.com/sweber/playground/default.aspx
Stramit's SharePoint Blog http://blog.spsclerics.com/
Tariq's Tangible Thoughts http://geekswithblogs.net/tariq/
Thom Robbins http://weblogs.asp.net/trobbins/category/6947.aspx
Tim Heuer's Blog http://timheuer.com/blog/
Todd Bleeker http://mindsharpblogs.com/todd/

Source: http://sharepointblogs.com/mkruger/archive/2005/02/15/1310.aspx

转载于:https://www.cnblogs.com/dudu/archive/2005/02/16/104639.html

优化该函数的一种方法是使用字符串分割函数`strsep`代替`strtok`,因为`strtok`在多线程环境下可能会导致不可预期的结果。另外,可以避免重复计算博主的粉丝数和粉丝群数量。 以下是优化后的代码: ```c void add_blogger(char *name, char *group_names, char *group_fans) { strcpy(bloggers[blogger_count].name, name); //复制姓名 bloggers[blogger_count].fans = 0; //初始化粉丝数为0 bloggers[blogger_count].group_count = 0; //初始化粉丝群数量为0 char *group_name = strdup(group_names); //复制粉丝群名字的副本 char *group_fan = strdup(group_fans); //复制粉丝群人数的副本 char *token1 = strsep(&group_name, ","); //使用逗号分隔粉丝群名字 char *token2 = strsep(&group_fan, ","); //使用逗号分隔粉丝群人数 while (token1 != NULL && token2 != NULL) { //循环读取每个粉丝群名字和人数,并添加到groups数组中 strcpy(bloggers[blogger_count].groups[bloggers[blogger_count].group_count].name, token1); //复制粉丝群名字 bloggers[blogger_count].groups[bloggers[blogger_count].group_count].fans = atoi(token2); //转换并赋值粉丝群人数 bloggers[blogger_count].groups[bloggers[blogger_count].group_count].head = NULL; //初始化第一个粉丝指针为NULL bloggers[blogger_count].fans += atoi(token2); //累加该博主的粉丝数 bloggers[blogger_count].group_count++; //增加该博主的粉丝群数量 token1 = strsep(&group_name, ","); //继续读取下一个粉丝群名字 token2 = strsep(&group_fan, ","); //继续读取下一个粉丝群人数 } free(group_name); //释放内存 free(group_fan); //释放内存 blogger_count++; //增加博主数量 } ``` 这样做可以避免多线程环境下可能出现的问题,并且更加简洁和安全。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值